How can I know that no one AJAX request is being executed right now or all AJAX requests are completed?
I need to write an if
statement. I need js native or jquery.
Like:
JavaScript
x
4
1
if(```no ajax pending```){
2
//do some
3
}
4
Thanks!
Advertisement
Answer
You can set up events that track ajax requests in jquery
https://api.jquery.com/ajaxstart/
https://api.jquery.com/ajaxstop
JavaScript
1
12
12
1
let ajaxRunning = false ;
2
3
$( document ).ajaxStart(function() {
4
ajaxRunning = true;
5
}).ajaxStop(function() {
6
ajaxRunning = false;
7
});
8
9
if (!ajaxRunning) {
10
// nothin doin
11
}
12
ajaxStop
gets tripped when all requests have been completed