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
This should return the visible area:
document.body.offsetWidth document.body.offsetHeight
I guess this is always equal to the browser size?