Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save yellowberri-snippets/7271233 to your computer and use it in GitHub Desktop.
Save yellowberri-snippets/7271233 to your computer and use it in GitHub Desktop.
JS: JQUERY: Get Distance to Bottom of Browser
function distanceToBottom() {
var distanceToTop = $(window).scrollTop();
var windowHeight = $(window).height();
var documentHeight = $('html').height();
var distanceFromEnd = (documentHeight - (distanceToTop + windowHeight));
return distanceFromEnd;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment