css3 click to scroll bottom code example
Example 1: javascript go to top of page
window.scroll({
top: 0,
left: 0,
behavior: 'smooth'
});
Example 2: how to smooth scroll in javascript
window.scrollTo({ top: 900, behavior: 'smooth' })
window.scroll({
top: 0,
left: 0,
behavior: 'smooth'
});
window.scrollTo({ top: 900, behavior: 'smooth' })