Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Synchronize three ajax requests

I have three AJAX requests firing one after another, and I'd like to be able to echo back all the data simultaneously.

$.ajax ({
        type: "POST",
        url: "page1.php",
        data: "var1=" + var1,
        success: function(msg) {
            $("#results2").load("page2.php", 
            function (responseText, textStatus, XMLHttpRequest) {
                $("#results3").load("page3.php",
                function (responseText, textStatus, XMLHttpRequest) {
                    if (textStatus == "success") {
                        $("#results1").html(msg);
                    }
                });
          });
        }
    });

#results1, #results2 and #results3 all need to be loaded with their relative data at the same time. The above code isn't doing it.

like image 792
Norse Avatar asked Feb 07 '12 10:02

Norse


1 Answers

you can use deferred object of jQuery added in 1.5 version:

$.when( $.ajax({1}) , $.ajax({2}) , $.ajax({3}) )
.then(function() {
  alert("tada");
});
like image 71
Benoît Avatar answered Oct 19 '22 09:10

Benoît