Skip to content

Instantly share code, notes, and snippets.

@vortizhe
Created August 9, 2012 14:20
Show Gist options
  • Save vortizhe/3304584 to your computer and use it in GitHub Desktop.
Save vortizhe/3304584 to your computer and use it in GitHub Desktop.
Smooth scroll
$('.selector').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