Created
April 5, 2016 18:17
-
-
Save nkabrown/4ec0685829b793e620046856dfab7126 to your computer and use it in GitHub Desktop.
document height dimension
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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