Limiter la demande AJAX

var throttled = _.throttle(someHandler, 100);
$(div).click(throttled);
Puzzled Puffin