Created
September 4, 2013 08:41
-
-
Save christoffer/6434358 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 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