Skip to content

Instantly share code, notes, and snippets.

@timneutkens
Last active June 23, 2016 09:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save timneutkens/760ec150e81909feed8e668ca1545359 to your computer and use it in GitHub Desktop.
Save timneutkens/760ec150e81909feed8e668ca1545359 to your computer and use it in GitHub Desktop.
Get space between element bottom and document bottom
function getPositionFromBottom(element) {
return $(document).height() - element.offset().top - element.outerHeight()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment