Resize - Debounce - Simple

by bizamajig

HTML

resize me!

JavaScript

var id;
$(window).resize(function() {
    clearTimeout(id);
    id = setTimeout(doneResizing, 500);
    
});

function doneResizing(){
  $("body").append("<br/>done!");   
}