Last active
November 11, 2021 15:22
-
-
Save greghunt/8dfe745e5af4f242e29dd1283913056c to your computer and use it in GitHub Desktop.
Scroll to a section
This file contains hidden or 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
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