public
Description: Provides a way to limit certain AJAX requests to be submitted one at a time.
Homepage:
Clone URL: git://github.com/nakajima/jquery-ajax-queue.git
name age message
file README Sun Sep 13 14:14:51 -0700 2009 Updated README [nakajima]
directory src/ Sun Sep 13 14:13:58 -0700 2009 Rename $.ajaxQueue.delete to $.ajaxQueue.del [nakajima]
directory test/ Sun Sep 13 14:13:34 -0700 2009 Correct tests [nakajima]
README
= jQuery AJAX Queue =

Provides a simple interface for creating AJAX requests that wait
their turn in line. Only one request in the queue can ever be active
at once. Once the active request finishes, the next request can start.

Usage:

  $.ajaxQueue.post('/some-place');
  $.ajaxQueue.get('/another');
  $.ajaxQueue.put('/another');
  $.ajaxQueue.del('/another');

(c) Copyright 2008 Pat Nakajima