I have some calculations that rely on window.innerHeight. But as I have found out this is not available in any IE before IE9. All the other options I have look
Javascript method to get full window height..:
window.outerHeight;
Javascript methods to get full document height..:
document.body.clientHeight;
or
document.body.offsetHeight;
Javascript methods to get visible document area height..:
this is height of window without bars.
window.innerHeight;
jQuery methods to get visible document area height and window without bars area height too..:
$(window).height();
or
$(window).outerHeight();
jQuery methods to get full document height..:
$(document).height();
or
$(document).outerHeight();
that's all, I hope will help you :)