I do a lot of AJAX Requests at the same time. I need to know when EVERY requests are over. How do I check that? Thank you!
+1
A:
Increment a counter with every request you issue, decrement that counter and test for zero when you get the response.
Remember that most browsers limit the number of concurrent requests that can be issued against the same server, queueing them up. It might benefit performance if you could combine some of the requests.
Mark Baker
2010-05-26 20:26:42
+1
A:
This question is similar to mine, I hope this will help: http://stackoverflow.com/questions/954484/how-to-check-if-an-ajax-function-is-busy-from-a-previouse-call
Babiker
2010-05-26 21:10:48