Skip to content

Instantly share code, notes, and snippets.

@MSerj
Created October 30, 2017 19:26
Show Gist options
  • Save MSerj/b62b3671a24b9eda41dfb8c1a1165581 to your computer and use it in GitHub Desktop.
Save MSerj/b62b3671a24b9eda41dfb8c1a1165581 to your computer and use it in GitHub Desktop.
Scroll to top
$('.go-top').click(function() {
$('html, body').animate({scrollTop: 0}, 300);
});
//go-top
$(window).scroll(function() {
if ($(window).scrollTop() > 150) {
$('.go-top').fadeIn();
} else {
$('.go-top').fadeOut();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment