nakajima / jquery-ajax-queue

Provides a way to limit certain AJAX requests to be submitted one at a time.

This URL has Read+Write access

nakajima (author)
Sun Sep 13 14:13:58 -0700 2009
commit  e8d5d4b1c8418acc3c3ea8a187eeb6b34fa5924d
tree    1d7abf1471d1ae2cc9afd0af2c832d96b8c92130
parent  0bd2bf42f5c80dc80de895de6dc75fe243a6cd29
name age message
file README Loading commit data...
directory src/
directory test/
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.delete('/another'); // This might have trouble in Safari...

(c) Copyright 2008 Pat Nakajima