Skip to content

Instantly share code, notes, and snippets.

@oguzhanaslan
Created May 11, 2014 15:36
Show Gist options
  • Save oguzhanaslan/1ec303edb3bcd1de2453 to your computer and use it in GitHub Desktop.
Save oguzhanaslan/1ec303edb3bcd1de2453 to your computer and use it in GitHub Desktop.
Check if page scroll is at bottom
$('#topScroll').hide();
$(window).scroll(function(){
if ( document.body.scrollHeight - $(this).scrollTop() <= $(this).height() ){
$('#topScroll').show();
} else {
$('#topScroll').hide();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment