0

What is the best method/function to calculate scroll body height of window? Thank you

Yara
  • 4,441
  • 6
  • 42
  • 62
  • 1
    possible 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 Answers2

1
$(document).height();

That should do it (reference: http://api.jquery.com/height/)

1

This should give you what you are looking for:

document.body.scrollHeight
F-A
  • 643
  • 3
  • 10