Skip to content

Instantly share code, notes, and snippets.

@hiyangguo
Created March 14, 2017 06:03
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 hiyangguo/4795bef9dc71e81b5b31acba60af278d to your computer and use it in GitHub Desktop.
Save hiyangguo/4795bef9dc71e81b5b31acba60af278d to your computer and use it in GitHub Desktop.
getDocumentHeight
function documentHeight() {
return Math.max(
document.documentElement.clientHeight,
document.body.scrollHeight,
document.documentElement.scrollHeight,
document.body.offsetHeight,
document.documentElement.offsetHeight
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment