Yara
Yara

Reputation: 4565

jQuery/JavaScript calculate scroll height

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

Upvotes: 0

Views: 2664

Answers (2)

F-A
F-A

Reputation: 643

This should give you what you are looking for:

document.body.scrollHeight

Upvotes: 1

user400055
user400055

Reputation:

$(document).height();

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

Upvotes: 1

Related Questions