Skip to content

Instantly share code, notes, and snippets.

@chy4egg
Last active December 19, 2017 08:58
Show Gist options
  • Save chy4egg/7c5ae87265dc9597facca9308c8e3217 to your computer and use it in GitHub Desktop.
Save chy4egg/7c5ae87265dc9597facca9308c8e3217 to your computer and use it in GitHub Desktop.
jQuery Smooth Scroll
$('a[href^="#"]').on("click", function(){
var the_id = $(this).attr("href");
$('html, body').animate({
scrollTop:$(the_id).offset().top
}, 'slow');
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment