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 use
function onresize (){ var h = $(window).height(), w= $(window).width(); $('#resultboxid').html('height= ' + h + ' width: ' w); } $(window).resize(onresize ); onresize ();// first time;
html: