Reputation: 4565
What is the best method/function to calculate scroll body height of window? Thank you
Upvotes: 0
Views: 2664
Reputation: 643
This should give you what you are looking for:
document.body.scrollHeight
Upvotes: 1
Reputation:
$(document).height();
That should do it (reference: http://api.jquery.com/height/)
Upvotes: 1