Skip to content

Instantly share code, notes, and snippets.

@christoffer
Created September 4, 2013 08:41
Show Gist options
  • Save christoffer/6434358 to your computer and use it in GitHub Desktop.
Save christoffer/6434358 to your computer and use it in GitHub Desktop.
<!-- Back to top -->
<script type="text/javascript">
$("#toTop").click(function (event) {
event.preventDefault();
//1 second of animation time
//html works for FFX but not Chrome
//body works for Chrome but not FFX
//This strange selector seems to work universally
$("html, body").animate({scrollTop: 0}, 1000);
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment