Reputation: 604
I want to calculate browser height without considering browser address bar and bottom navigation bar height.
The value of screen.height
will give the full browser height. I've highlighted area in orange in attached image. Looking for generic solution which will work on all mobile devices
Upvotes: 3
Views: 4324
Reputation: 17721
Easily:
window.innerHeight
There is an algorithm to obtain the height of the viewport excluding, if rendered, the horizontal scrollbar.
See also the offical docs.
Upvotes: 5