window.scrollTo not working #10698
Replies: 2 comments 1 reply
-
Hi, I tested you code and it's working fine. Is there an error thrown or is it just not scrolling to the top ?
|
Beta Was this translation helpful? Give feedback.
1 reply
-
<script> function scrollToTop() { window.scrollTo({ top: 0, behavior: 'smooth' }); } function scrollToBottom() { window.scrollTo({ top: document.body.scrollHeight, behavior: 'smooth' }); } </script> |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have this function that I use in Onmount () to scroll back to the top when navigating between pages
but for some reason, it's not working
or give me alternative solutions
Beta Was this translation helpful? Give feedback.
All reactions