Throttle Ajax Permintaan

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