How can you get the window.innerHeight in internet explorer. Thanks.
A simple one line solution:
var WinHeight = window.innerHeight || Math.max(document.documentElement.clientHeight, document.body.clientHeight);