Skip to content

Instantly share code, notes, and snippets.

@Rafailong
Created January 29, 2014 18:21
Show Gist options
  • Save Rafailong/8693809 to your computer and use it in GitHub Desktop.
Save Rafailong/8693809 to your computer and use it in GitHub Desktop.
Smooth scrolling to top of page
$("a[href='#top']").click(function() {
$("html, body").animate({ scrollTop: 0 }, "slow");
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment