Skip to content

Instantly share code, notes, and snippets.

@gpassarelli
Created May 10, 2012 21:01
Show Gist options
  • Save gpassarelli/045636d1df3d29bd06b8 to your computer and use it in GitHub Desktop.
Save gpassarelli/045636d1df3d29bd06b8 to your computer and use it in GitHub Desktop.
jQuery: Smooth Scrolling Internal Anchor Links
$(".scroll").click(function(event){
event.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