jQuery web page height

JqueryHeightWebpage

Jquery Problem Overview


Let's say that a web page is twice the height of the browser window (thus there's a scroll bar). How do I retrieve the height of the web page in jQuery?

Jquery Solutions


Solution 1 - Jquery

$(window).height();   // returns height of browser viewport

$(document).height(); // returns height of HTML document

Solution 2 - Jquery

You could use the height() of the document.

$(document).height();

Solution 3 - Jquery

This can work also.

$('body').height();

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestioncoreView Question on Stackoverflow
Solution 1 - JqueryrahulView Answer on Stackoverflow
Solution 2 - JquerytheIVView Answer on Stackoverflow
Solution 3 - JquerySoyeb AhmedView Answer on Stackoverflow