Skip to content

Instantly share code, notes, and snippets.

@Yelakelly
Created November 10, 2016 12:24
Show Gist options
  • Save Yelakelly/22e06bd351514f8eb09c9ea1146e754f to your computer and use it in GitHub Desktop.
Save Yelakelly/22e06bd351514f8eb09c9ea1146e754f to your computer and use it in GitHub Desktop.
Scroll to elem - jQuery snuppet
function scrollTo(item, offset){
offset = offset ? offset : 0;
$('html, body').animate({
scrollTop: $(item).offset().top - 0
}, 1000);
}
$('.js-nav-link').on('click', function(e){
var elem = $(this).attr('href');
if(elem.match(/#.+/)){
scrollTo(elem, 50);
return;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment