Resize Thottler
by Ben Clayton
HTML
<div>hello</br></div>
JavaScript
var tid;
$(window).resize(function(){
console.log('window resize');
if (tid) clearTimeout(tid);
tid=null;
tid = setTimeout(function(){
doit();
},1000);
});
function doit(){
console.log("doit");
}