How do I get the current height and width of the available space in the browser as it is open.
I don\'t want the height of the total document, just what\'s visible on th
then:
document.getElementById('THE_HTML').clientHeight;
Tested and working under IE8 and FF3.6...