Last active
December 11, 2015 02:19
-
-
Save knorthfield/4529879 to your computer and use it in GitHub Desktop.
Single Page Nav Scroll
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('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