Like... the height that excludes the address bar, bookmarks, etc. just the viewing space.
$(window).innerHeight()
appears to not work.
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With