Skip to content

Instantly share code, notes, and snippets.

@stevedya
Created December 30, 2019 20:52
Show Gist options
  • Save stevedya/1de6b3ea76cb3d793d8d78b4dc7b4c25 to your computer and use it in GitHub Desktop.
Save stevedya/1de6b3ea76cb3d793d8d78b4dc7b4c25 to your computer and use it in GitHub Desktop.
Smooth Scroll to ID with pure javascript
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment