How do I call a function once the browser windows has FINISHED resizing?
I\'m trying to do it like so, but am having problems. I\'m using the JQuery Resize
jQuery provides an off method to remove event handler
off
$(window).resize(function(){ if(magic == true) { $(window).off('resize', arguments.callee); } });