Skip to content

Instantly share code, notes, and snippets.

@meSingh
Created April 5, 2013 20:06
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 meSingh/5322207 to your computer and use it in GitHub Desktop.
Save meSingh/5322207 to your computer and use it in GitHub Desktop.
Back To Top button easing with jQuery
<a href="javascript:void(0)" class="backtotop">Back to Top</a>
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js'></script>
<script type='text/javascript'> jQuery('.backtotop').click(function(){ jQuery('html, body').animate({scrollTop:0}, 'slow'); }); </script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment