Last active
April 10, 2019 15:12
-
-
Save alordiel/10bb4bee0fceb81f74191b7c93d402d7 to your computer and use it in GitHub Desktop.
Smooth pure js scroll to ID
This file contains 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
scrollTo (id) { | |
window.scrollTo({ | |
top: document.getElementById(id).offsetTop, | |
left: 0, | |
behavior: 'smooth' | |
}); | |
} | |
// Doesn't work in IE | |
//https://developer.mozilla.org/en-US/docs/Web/API/Window/scroll |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment