What is the best method/function to calculate scroll body height of window? Thank you
Asked
Active
Viewed 2,643 times
0
-
1possible duplicate of [Finding full page height](http://stackoverflow.com/questions/5813523/finding-full-page-height) – Felix Kling Aug 04 '11 at 09:41
-
and an explanation here: http://stackoverflow.com/questions/3044230/difference-between-screen-availheight-and-window-height – Nivas Aug 04 '11 at 09:45
2 Answers
1
$(document).height();
That should do it (reference: http://api.jquery.com/height/)
-
Not this. I need the scroll body height, not scroll top or document height. – Yara Aug 04 '11 at 09:45