Skip to content

Instantly share code, notes, and snippets.

@kruzyk
Created September 16, 2019 12:06
Show Gist options
  • Save kruzyk/5e0c46516eb55ce0413a0ab5f33bfb42 to your computer and use it in GitHub Desktop.
Save kruzyk/5e0c46516eb55ce0413a0ab5f33bfb42 to your computer and use it in GitHub Desktop.
smooth scroll for all # (id) internal links
$('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