3

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

Nikhil
  • 544
  • 1
  • 6
  • 19
  • Possible duplicate of [Get Android Chrome Browser Address bar height in JS](https://stackoverflow.com/questions/50990006/get-android-chrome-browser-address-bar-height-in-js) – Mr. Polywhirl Mar 22 '19 at 14:58

1 Answers1

5

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.

MarcoS
  • 17,323
  • 24
  • 96
  • 174