Reputation: 6167
How can I get the height of viewable web page of browser with jquery? I have tried $(window).height()
but it did not return accurate result.. Thanks..
Upvotes: 4
Views: 4952
Reputation: 2119
From the jQuery documentation:
$(window).height(); // returns height of browser viewport
$(document).height(); // returns height of HTML document
Upvotes: 9