Created
December 1, 2016 19:16
-
-
Save Farmatique/61f7fbac5e50853109695877fe6b76d8 to your computer and use it in GitHub Desktop.
Smooth scroll to section by clicking on link
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
jQuery('a').click(function(){ | |
jQuery('html, body').animate({ | |
scrollTop: jQuery( jQuery(this).attr('href') ).offset().top | |
}, 500); | |
return false; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment