What’s the difference between : 1. (ajaxStart and ajaxSend) and 2. (ajaxStop and ajaxComplete)?
.ajaxStart() and .ajaxStop() are for all requests together, ajaxStart fires when the first simultaneous request starts, ajaxStop fires then the last of that simultaneous batch finishes. So say you’re making 3 requests all at once, ajaxStart() fires when the first starts, ajaxStop() fires when the last one (they don’t necessarily finish in order) comes back. … Read more