Skip to content

Instantly share code, notes, and snippets.

@knorthfield
Last active December 11, 2015 02:19
Show Gist options
  • Save knorthfield/4529879 to your computer and use it in GitHub Desktop.
Save knorthfield/4529879 to your computer and use it in GitHub Desktop.
Single Page Nav Scroll
$('nav a').click(function(){
target = $(this).attr('href');
targetOffset = $(target).offset().top;
$('html,body').animate({ scrollTop: targetOffset }, 'slow');
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment