Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bahiirwa/2da754ee163ec08169d2edc269dca126 to your computer and use it in GitHub Desktop.
Save bahiirwa/2da754ee163ec08169d2edc269dca126 to your computer and use it in GitHub Desktop.
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