I call ajax jquery function inside .each loop, and I want to do an action just when all the ajax calls inside the loop finish and success.
$(".checked-box").each(function () {
// ajax call goes here
});
$('.messsage').html('all requests done');
How to do that? without async: false
because this blocks the browser.