Get window height on mobile devices (especially iPhones) without using jQuery

html, ios, iphone, javascript, mobile

Solution

document.documentElement.clientHeight

There are a number of other methods, too: http://responsejs.com/labs/dimensions/

Problem

All the answers on SO for fetching the device's height seem based on jQuery. We need something in pure JavaScript before the jQuery code loads.

Original source