Skip to content

Instantly share code, notes, and snippets.

@olehi94
Created December 8, 2020 15:04
Show Gist options
  • Save olehi94/9e8dd570e2f9cf211f965bd8e1a7c46b to your computer and use it in GitHub Desktop.
Save olehi94/9e8dd570e2f9cf211f965bd8e1a7c46b to your computer and use it in GitHub Desktop.
Smooth scrolling
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