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
Do you mean something like this window.innerHeight; window.innerWidth $(window).height(); $(window).width()
window.innerHeight; window.innerWidth
$(window).height(); $(window).width()