Skip to content

Instantly share code, notes, and snippets.

@pitch-gist
Created June 12, 2012 21:55
Show Gist options
  • Save pitch-gist/2920368 to your computer and use it in GitHub Desktop.
Save pitch-gist/2920368 to your computer and use it in GitHub Desktop.
JavaScript: jQuery Animate Anchor Scroll
// smooth anchor
// add a class of scroll to any anchor link and this will smoothly scroll to the location.
$(".scroll").click(function(e){
e.preventDefault();
$('html,body').animate({scrollTop:$(this.hash).offset().top}, 500);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment