Skip to content

Instantly share code, notes, and snippets.

@xrman
Forked from delowardev/Top Scroll Js Code
Created September 20, 2016 15:04
Show Gist options
  • Save xrman/b5301dcf26653064ac24216ac43749e7 to your computer and use it in GitHub Desktop.
Save xrman/b5301dcf26653064ac24216ac43749e7 to your computer and use it in GitHub Desktop.
$(window).scroll(function(){
if ($(this).scrollTop() > 150) {
$('.topScrl').fadeIn();
} else {
$('.topScrl').fadeOut();
}
});
//Click event to scroll to top
$('.topScrl').click(function(){
$('html, body').animate({scrollTop : 0},800);
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment