Skip to content

Instantly share code, notes, and snippets.

@snowleo208
Created September 11, 2018 13:57
Show Gist options
  • Save snowleo208/846f5ce737390c6f689214d3febce717 to your computer and use it in GitHub Desktop.
Save snowleo208/846f5ce737390c6f689214d3febce717 to your computer and use it in GitHub Desktop.
window.addEventListener("load", function() {
// use slice for supporting IE 11
Array.prototype.slice.call(document.querySelectorAll('.menu-item')).forEach(item => {
const target = item.getAttribute('data-id');
item.addEventListener('click', e => {
e.preventDefault();
scroll(document.getElementById(target));
});
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment