Last active
April 12, 2022 07:29
-
-
Save m4mohaiman/84e4be9579589ee46f41e967c5990b56 to your computer and use it in GitHub Desktop.
Smooth scroll to top of the page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
scrollTopBtn.onClick = () => { | |
window.scrollTo({ | |
top:0, | |
behavior: 'smooth' | |
}) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment