Skip to content

Instantly share code, notes, and snippets.

@nkabrown
Created April 5, 2016 18:17
Show Gist options
  • Save nkabrown/4ec0685829b793e620046856dfab7126 to your computer and use it in GitHub Desktop.
Save nkabrown/4ec0685829b793e620046856dfab7126 to your computer and use it in GitHub Desktop.
document height dimension
// jquery's method to get total document height dimensions
const height = Math.max(document.body.scrollHeight, document.body.offsetHeight, document.documentElement.clientHeight,
document.documentElement.scrollHeight, document.documentElement.offsetHeight);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment