MCQs > IT & Programming > Mootools > Consider the following code snippet: var rq1 = new Request('request1'}); var rq2 = new Request('request2'); var rq3 = new Request('request3'); var group = new Group(rq1, rq2, rq3); group.addEvent('onComplete', function(){ alert('Finished'); }); rq1.request(); rq2.request(); rq3.request(); When will the alert box be displayed?

Mootools MCQs

Consider the following code snippet:
    var rq1 = new Request("request1"});
    var rq2 = new Request("request2");
    var rq3 = new Request("request3");
    var group = new Group(rq1, rq2, rq3);
    group.addEvent("onComplete", function(){
        alert("Finished");
    });
    rq1.request();
    rq2.request();
    rq3.request();
When will the alert box be displayed?

Answer

Correct Answer: All three requests finish.

Explanation:

Note: This Question is unanswered, help us to find answer for this one

Mootools Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it

search

Mootools Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it