how to scroll to top of a page automatically using javascript code example
Example 1: Scroll to the top of the page using JavaScript?
// Get The Id
var topPage = document.getElementById(`top-page`)
// On Click, Scroll to the Top of Page
topPage.onclick = () => window.scrollTo({ top: 0, behavior: 'smooth' })
// On scroll, Show/Hide the button
window.onscroll = () => {
window.scrollY > 500
? (topPage.style.display = 'block')
: (topPage.style.display = 'none')
}
// CSS
body {
background-color: #111;
height:5000px;
}
#top-page {
width: 50px;
position: fixed;
right: 30px;
bottom: 30px;
cursor: pointer;
color: white;
display: none;
}
// HTML
Example 2: how to scroll to top of a page automatically using javascript
how to scroll to top of a page automatically using javascript