Total height of the page
javascript
Solution
Without a framework:
var _docHeight = (document.height !== undefined) ? document.height : document.body.offsetHeight;
var _docWidth = (document.width !== undefined) ? document.width : document.body.offsetWidth;
Problem
I'm trying to get the total height of a page using JavaScript so I can check if the page is long enough to display something, however in my testing I am unable to get the total height of a page. I've looked around on the Internet but things like this don't seem to be well documented, as all I can find is `scrollHeight`, which, as I might mention, doesn't work. Any way to use JavaScript to find it?