function HSAvailWidth() { if (typeof window.innerWidth != 'undefined') return window.innerWidth; if (typeof document.documentElement != 'undefined' && typeof document.documentElement.clientWidth != 'undefined' && document.documentElement.clientWidth !== 0) return document.documentElement.clientWidth; return document.getElementsByTagName('body')[0].clientWidth; } function HSAvailHeight() { if (typeof window.innerHeight != 'undefined') return window.innerHeight; if (typeof document.documentElement != 'undefined' && typeof document.documentElement.clientHeight != 'undefined' && document.documentElement.clientHeight !== 0) return document.documentElement.clientHeight; return document.getElementsByTagName('body')[0].clientHeight; }
Or with jQuery...
$(window).height(); $(window).width();
Note: different browsers will have different available viewport height/widths because the browser tool bars very is size.
More here...
http://api.jquery.com/height/
1 comment:
Nice post.
Thanks for the information.
Post a Comment