How can I detect window/browser size with jQuery like Gmail? In Gmail, we don\'t need to refresh or reload current page as soon as we have changed window resolution in windo
You could also use plain Javascript window.innerWidth to compare width.
window.innerWidth
But use jQuery's .resize() fired automatically for you:
.resize()
$( window ).resize(function() { // your code... });
http://api.jquery.com/resize/