I know that I can get browser height in fullscreen without windows taskbar with winodw.availHeight. But I want to know the height without scrollbar, adress bar etc. too. I cant use innerHeight because if browser is not fullscreen, I still want to get fullscreen inner height.
thank you (and sorry for my English)
Asked
Active
Viewed 632 times
-1

lukasbalaz7
- 360
- 2
- 11
1 Answers
1
window.innerHeight
works perfectly. It gave me 455 when it was full screen and 340 when not full screen.
Check for yourself - Type window.innerHeight
when normal and then click F11 and then do the same. You'll see different value. So it does differ.

Amit Joki
- 58,320
- 7
- 77
- 95
-
I meant that I WANT to get same values – lukasbalaz7 Oct 04 '14 at 15:06