Skip to content

Instantly share code, notes, and snippets.

@Farmatique
Created December 1, 2016 19:16
Show Gist options
  • Save Farmatique/61f7fbac5e50853109695877fe6b76d8 to your computer and use it in GitHub Desktop.
Save Farmatique/61f7fbac5e50853109695877fe6b76d8 to your computer and use it in GitHub Desktop.
Smooth scroll to section by clicking on link
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