Skip to content

Instantly share code, notes, and snippets.

@Swistikkk
Created September 2, 2016 07:47
Show Gist options
  • Save Swistikkk/cfc14a0f9388bdfe5ed1be8636ad49ac to your computer and use it in GitHub Desktop.
Save Swistikkk/cfc14a0f9388bdfe5ed1be8636ad49ac to your computer and use it in GitHub Desktop.
forEach(menuItems, (link) => {
$(link).on('click', function(e) {
e.preventDefault();
$('html, body').stop().animate({
scrollTop: $($(this).attr('href')).offset().top}, 500, 'linear');
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment