Possible Duplicate:
Pass in an array of Deferreds to $.when()

Is there anyway to pass the jquery deferred $.when an array of ajax functions? Example:

 var arr = [
    $.getJSON(window.location, function() { alert('yes') }),
    $.getJSON(window.location, function() { alert('yes') })
 ]

 $.when(arr).then(function(a, b) {

 });

Thanks for your help!

link|improve this question
feedback

closed as exact duplicate by Alnitak, Andrew Whitaker, Tgr, Donal Fellows, Graviton Jun 24 '11 at 13:34

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

$.when.apply( $, arr ).then(function( a, b ) { ... });
link|improve this answer
it's a duplicate question, but have an upvote anyway for writing $.Deferred() in the first place ;-) – Alnitak Jun 22 '11 at 16:08
thanks, Alnitak ;) – Julian Aubourg Jun 22 '11 at 17:46
I know, there isn't much out there on Deferreds! Thanks for your help! Thats a tricky one. – Austin McDaniel Jun 22 '11 at 19:49
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.