jquery-ajaxQueue
jquery-ajaxQueue copied to clipboard
A simple queue for your ajax requests in jQuery.
Your library is availabel on CDNJS (see https://cdnjs.com/libraries/jquery-ajaxQueue), but it seems that the source map, included in the published files are wrong. In the distribution file https://github.com/gnarf/jquery-ajaxQueue/blob/master/dist/jquery.ajaxQueue.min.js the map points...
for everybody else who's waiting, just use my fork (use the file in src directory)
default is of course 0 if not specified, works like this: ```js $.ajaxQueue({ url: 'https://httpbin.org/get', delay: 1000 }).done(function(data) { console.log('success'); console.log(data); }).fail(function() { console.log('failed'); }); ```
In README there is not noticed methods or callbacks to see progress. Basically, I want to show user that something is being downloaded and hide it when all downloads are...
I used Bower for multi project and i would like that jquery-ajax join bower community : http://bower.io/ Thanks
I wish we have two things: 1) The ability to name a queue, so we can use multiple queues at the same time. 2) New calls added to a queue...
If you don't pass any ajax request it will query self page, sometimes you may want to do nothing and still getting valid jqXHR object to chain actions.
As of jQuery 1.8 deferred.then second parameter is optional
Hi! https://github.com/gnarf/jquery-ajaxQueue misspells "plugin" as "pluging" . Please correct it.
## feature 1. can define multi queue 2. different queue run async 3. same queue run in one by one ## one more parameter ``` javascript $.ajaxQueue(ajaxOpts,queueIndex)//queueIndexdefine which queue will...