Is there a jQuery plugin or a way using straight JavaScript to detect browser size.
I\'d prefer it is the results were \'live\', so if the width or height changes, s
You can try adding even listener on re-size like
window.addEventListener('resize',CheckBrowserSize,false); function CheckBrowserSize() { var ResX= document.body.offsetHeight; var ResY= document.body.offsetWidth; }