Skip to content

Instantly share code, notes, and snippets.

@zgurya
Created December 19, 2016 09:44
Show Gist options
  • Save zgurya/cd213f2748f4c18e660fa275cc5bbd0a to your computer and use it in GitHub Desktop.
Save zgurya/cd213f2748f4c18e660fa275cc5bbd0a to your computer and use it in GitHub Desktop.
jQuery(function($){
$("header li a").click(function(e) {
e.preventDefault();
var elemID=$(this).attr('href');
$('html, body').animate({
scrollTop: $(elemID).offset().top-100
}, 1000);
});
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment