Skip to content

Instantly share code, notes, and snippets.

@wutupake
Created October 2, 2012 13:52
Show Gist options
  • Save wutupake/3819329 to your computer and use it in GitHub Desktop.
Save wutupake/3819329 to your computer and use it in GitHub Desktop.
JS: Scroll to the top of the page
<a name="top"></a> ... <a href="#top">Back to top</a>
$(document).ready(function() {
$('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