views:

20

answers:

2

Like... the height that excludes the address bar, bookmarks, etc. just the viewing space.

$(window).innerHeight()

appears to not work.

+2  A: 

Use .height() for this, as mentioned in the API:

This method is also able to find the height of the window and document.

$(window).height();   // returns height of browser viewport
$(document).height(); // returns height of HTML document

As for why .innerHeight() isn't working:

This method is not applicable to window and document objects; for these, use .height() instead.

Jonathan Lonowski
lol, thats what I thought. as it turns out my math was just wrong. thanks!
DerNalia
A: 
jQuery(window).height();
Praveen Prasad