Skip to content

Instantly share code, notes, and snippets.

@seabrizz
Last active September 22, 2016 08:47
Show Gist options
  • Save seabrizz/70c8e41d7906bff259bb9653d366a435 to your computer and use it in GitHub Desktop.
Save seabrizz/70c8e41d7906bff259bb9653d366a435 to your computer and use it in GitHub Desktop.
button "toTop"
$(window).scroll(function() {
if($(this).scrollTop() != 0) {
$('#toTop').fadeIn();
} else {
$('#toTop').fadeOut();
}
});
$('#toTop').click(function() {
$('body,html').animate({scrollTop:0},800);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment