Using jQuery throttle / debounce, you can pass a delay and function to $.throttle to get a new function, that when called repetitively, executes the original function (in the same context and with all arguments passed through) no more than once every delay milliseconds.

This can be especially useful for rate limiting execution of handlers on events like resize and scroll. Just take a look at the examples to see for yourself!

Window resize (some browsers fire this event continually)

The code

$(function(){
  
  var counter_1 = 0,
      counter_2 = 0
      last_time_1 = +new Date(),
      last_time_2 = +new Date();
  
  // This function is not throttled, but instead bound directly to the event.
  function resize_1() {
    var now = +new Date(),
      html = 'resize handler executed: ' + counter_1++ + ' times'
      + ' (' + ( now - last_time_1 ) + 'ms since previous execution)'
        + '<br/>window dimensions: ' + $(window).width() + 'x' + $(window).height();
    
    last_time_1 = now;
    
    $('#text-resize-1').html( html );
  };
  
  // This function is throttled, and the new, throttled, function is bound to
  // the event. Note that in jQuery 1.4+ a reference to either the original or
  // throttled function can be passed to .unbind to unbind the function.
  function resize_2() {
    var now = +new Date(),
      html = 'throttled resize handler executed: ' + counter_2++ + ' times'
        + ' (' + ( now - last_time_2 ) + 'ms since previous execution)'
        + '<br/>window dimensions: ' + $(window).width() + 'x' + $(window).height();
    
    last_time_2 = now;
    
    $('#text-resize-2').html( html );
  };
  
  // Bind the not-at-all throttled handler to the resize event.
  $(window).resize( resize_1 );
  
  // Bind the throttled handler to the resize event.
  $(window).resize( $.throttle( 250, resize_2 ) ); // This is the line you want!
  
});

Window scroll (some browsers fire this event continually)

The code

$(function(){
  
  var counter_1 = 0,
      counter_2 = 0
      last_time_1 = +new Date(),
      last_time_2 = +new Date();
  
  // This function is not throttled, but instead bound directly to the event.
  function scroll_1() {
    var now = +new Date(),
      html = 'scroll handler executed: ' + counter_1++ + ' times'
        + ' (' + ( now - last_time_1 ) + 'ms since previous execution)'
        + '<br/>window scrollLeft: ' + $(window).scrollLeft() + ', scrollTop: ' + $(window).scrollTop();
    
    last_time_1 = now;
    
    $('#text-scroll-1').html( html );
  };
  
  // This function is throttled, and the new, throttled, function is bound to
  // the event. Note that in jQuery 1.4+ a reference to either the original or
  // throttled function can be passed to .unbind to unbind the function.
  function scroll_2() {
    var now = +new Date(),
      html = 'throttled scroll handler executed: ' + counter_2++ + ' times'
        + ' (' + ( now - last_time_2 ) + 'ms since previous execution)'
        + '<br/>window scrollLeft: ' + $(window).scrollLeft() + ', scrollTop: ' + $(window).scrollTop();
    
    last_time_2 = now;
    
    $('#text-scroll-2').html( html );
  };
  
  // Bind the not-at-all throttled handler to the scroll event.
  $(window).scroll( scroll_1 );
  
  // Bind the throttled handler to the scroll event.
  $(window).scroll( $.throttle( 250, scroll_2 ) ); // This is the line you want!
  
});