Skip to content

Instantly share code, notes, and snippets.

@rochow
Last active August 29, 2015 14:25
Show Gist options
  • Save rochow/fc0f0c3b267e649628bf to your computer and use it in GitHub Desktop.
Save rochow/fc0f0c3b267e649628bf to your computer and use it in GitHub Desktop.
jQuery - Simple Back to Top Link
// Back to top link. Automatically fades in once user has started scrolling
function backtotop() {
jQuery( window ).scroll(function() {
if(jQuery( this ).scrollTop() > 0) {
jQuery( '#toTop' ).fadeIn();
} else {
jQuery( '#toTop' ).fadeOut();
}
});
jQuery( '#toTop' ).click(function (e) {
jQuery(' body,html' ).animate({ scrollTop:0 }, 800 );
e.preventDefault();
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment