I\'m using JQuery as such:
$(window).resize(function() { ... });
However, it appears that if the person manually resizes their browser wind
If you have Underscore.js installed, you could:
$(window).resize(_.debounce(function(){ alert("Resized"); },500));