I want to get exact height of the body of webbrowser window. I tried innerHeight, clientHeight all other solutions which I get while googling. but none of them give exact he
Have you tried using:
window.outerHeight (this is for IE9 and other modern browser's height)
For Internet Explorer with backward-compatibility mode, use
document.body.offsetHeight
And also, Internet Explorer (standards mode, document.compatMode=='CSS1Compat'):
document.documentElement.offsetHeight
Have a look at the following for more information: