Skip to content

Instantly share code, notes, and snippets.

@jayjayswal
Last active August 29, 2015 14:12
Show Gist options
  • Save jayjayswal/717e81d6f6626bd62b2d to your computer and use it in GitHub Desktop.
Save jayjayswal/717e81d6f6626bd62b2d to your computer and use it in GitHub Desktop.
Get Height of document in any browser
function getDocHeight() {
var D = document;
return Math.max(
D.body.scrollHeight, D.documentElement.scrollHeight,
D.body.offsetHeight, D.documentElement.offsetHeight,
D.body.clientHeight, D.documentElement.clientHeight
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment