I have a problem, when submitting a form all active ajax request fail, and that triggers error event.
How to stop all active ajax requests in jQuery without trigerring error event?
|
feedback
|
|
Every time you create an ajax request you could use a variable to store it:
Then you can abort the request:
You could use an array keeping track of all pending ajax requests and abort them if necessary. | |||||
feedback
|
|
Here's what I'm currently using to accomplish that.
Note: _.each of underscore.js is present, but obviously not necessary. I'm just lazy and I don't want to change it to $.each(). 8P | |||||
feedback
|
| |||||||
feedback
|
|
Using ajaxSetup is not correct, as is noted on its doc page. It only sets up defaults, and if some requests override them there will be a mess. I am way late to the party, but just for future reference if someone is looking for a solution to the same problem, here is my go at it, inspired by and largely identical to the previous answers, but more complete
| |||
|
feedback
|
|
I had some problems with andy's code, but it gave me some great ideas. First problem was that we should pop off any jqXHR objects that successfully complete. I also had to modify the abortAll function. Here is my final working code:
I didn't like the ajaxComplete() way of doing things. No matter how I tried to configure .ajaxSetup it did not work. | |||||||||
feedback
|