I have a function that does something like this
for(i = 0; i< n; i++){
for(j = 0; j<m; j++){
$.post('/post', {
...
}
}
}
Is there any way to do something like an alert only after every post request is done?
I have a function that does something like this
for(i = 0; i< n; i++){
for(j = 0; j<m; j++){
$.post('/post', {
...
}
}
}
Is there any way to do something like an alert only after every post request is done?