jQuery web page height jQuery web page height jquery jquery

jQuery web page height


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


You could use the height() of the document.

$(document).height();


This can work also.

$('body').height();