Created
December 6, 2016 07:21
-
-
Save berkin/f5a17d81017afd44d3d8d6cd9c9cd4bc to your computer and use it in GitHub Desktop.
Scroll height of content
This file contains 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
function scrollHeight() { | |
const body = document.body; | |
const html = document.documentElement; | |
return Math.max(body.scrollHeight, body.offsetHeight, html.clientHeight, html.scrollHeight, html.offsetHeight); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment