Skip to content

Instantly share code, notes, and snippets.

@nateluzod
Created May 31, 2011 19:37
Show Gist options
  • Save nateluzod/1001121 to your computer and use it in GitHub Desktop.
Save nateluzod/1001121 to your computer and use it in GitHub Desktop.
jQuery scroll to page top
$.fn.scrollToTop = 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