Skip to content

Instantly share code, notes, and snippets.

@og-shawn-crigger
Created May 11, 2012 17:41
Show Gist options
  • Save og-shawn-crigger/2661261 to your computer and use it in GitHub Desktop.
Save og-shawn-crigger/2661261 to your computer and use it in GitHub Desktop.
Scroll top Top jQuery
<a name="top">
<a href="#top" class="scroll-totop">Top</a>
<script>
$('a[href=#top]').click(function(){
$('html, body').animate({scrollTop:0}, 'slow');
return false;
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment