Answers for "cdocument .scroll to top"

1

js scroll to top

// this changes the scrolling behavior to "smooth"
window.scrollTo({ top: 0, behavior: 'smooth' });
Posted by: Guest on September-29-2021
0

javascript scroll to top

const goToTop = () => window.scrollTo(0, 0);

goToTop();
Posted by: Guest on September-28-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language