Skip to content

Instantly share code, notes, and snippets.

@hsnyc
hsnyc / scroll-with-offset.js
Last active May 5, 2022 16:11
Smooth scroll to #hash links with and without offset
// Smooth Scroll to #links | with Off-Set ==================================== //
//get all # links in the document
let links = document.querySelectorAll('a[href*="#"]');
// console.log(links);
//assign a click event to all the # links
for(let l = 0; l < links.length; l++) {
links[l].addEventListener('click', scrollMe, false);
}