/ Published in: JavaScript
Get the height of the browser window in any browser. Rob Zand's code.
Expand |
Embed | Plain Text
var windowHeight = window.innerHeight ? window.innerHeight : document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight;
You need to login to post a comment.
