Created
September 16, 2019 12:06
-
-
Save kruzyk/5e0c46516eb55ce0413a0ab5f33bfb42 to your computer and use it in GitHub Desktop.
smooth scroll for all # (id) internal links
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
$('a[href^=#]:not([href=#])').on('click', function () { | |
var element = $($(this).attr('href')); | |
$('html,body').animate({ scrollTop: element.offset().top },'normal', 'swing'); | |
return false; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment