jQuery plugin to debouncing event handlers (think resize or text input events). Bind event handlers just like you’re used to, but add an extra timing parameter.
$(window).on('resize', function(e) {
console.log(e.type + '-event was 250ms not triggered');
}, 250);
Leave a comment