Skip to content

Instantly share code, notes, and snippets.

@rob1121
Created July 21, 2016 02:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rob1121/e0a4126d7236db2f6e4a7a5ef5e4aa57 to your computer and use it in GitHub Desktop.
Save rob1121/e0a4126d7236db2f6e4a7a5ef5e4aa57 to your computer and use it in GitHub Desktop.
scroll to top using jquery
$('#someAnchor').click(function() {
$('html, body').animate({ scrollTop:0 }, 'fast');
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment