I’m unable to get the height of a page in javascript when the page is larger than the screen.
I thought this would get me the right height:
$(document).height();
but that only gets the height of the screen, same as:
$('body').height();
same as:
document.offsetHeight;
For some reason all these examples only return the height of the screen. Can somebody help?
Using jQuery (which you did specify),
$(document).height()will return exactly what you’re asking for.To clarify the usage of the
height()method:I suspect, that if
$(document).height()is not working for you, something is wrong. You may be: