Nikhil
Nikhil

Reputation: 604

Android and IOS mobile devices :calculate browser screen height excluding address bar and navigation bar height

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

attache image

Upvotes: 3

Views: 4324

Answers (1)

MarcoS
MarcoS

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

Related Questions