nakajima / jquery-ajax-queue
- Source
- Commits
- Network (0)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Tree:
e8d5d4b
commit e8d5d4b1c8418acc3c3ea8a187eeb6b34fa5924d
tree 1d7abf1471d1ae2cc9afd0af2c832d96b8c92130
parent 0bd2bf42f5c80dc80de895de6dc75fe243a6cd29
tree 1d7abf1471d1ae2cc9afd0af2c832d96b8c92130
parent 0bd2bf42f5c80dc80de895de6dc75fe243a6cd29
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
