Skip to content

Instantly share code, notes, and snippets.

@greghunt
Last active November 11, 2021 15:22
Show Gist options
  • Save greghunt/8dfe745e5af4f242e29dd1283913056c to your computer and use it in GitHub Desktop.
Save greghunt/8dfe745e5af4f242e29dd1283913056c to your computer and use it in GitHub Desktop.
Scroll to a section
document.querySelectorAll("[data-scroll]").forEach(el => {
el.addEventListener('click', () => document.querySelector(el.dataset.scroll).scrollIntoView(true));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment