Here's an contrived example of what's going on: http://jsfiddle.net/adamjford/YNGcm/20/

HTML:

<a href="#">Click me!</a>
<div></div>

JavaScript:

function getSomeDeferredStuff() {
    var deferreds = [];

    var i = 1;
    for (i = 1; i <= 10; i++) {
        var count = i;

        deferreds.push(
        $.post('/echo/html/', {
            html: "<p>Task #" + count + " complete.",
            delay: count
        }).success(function(data) {
            $("div").append(data);
        }));
    }

    return deferreds;
}

$(function() {
    $("a").click(function() {
        var deferreds = getSomeDeferredStuff();

        $.when(deferreds).done(function() {
            $("div").append("<p>All done!</p>");
        });
    });
});

I want "All done!" to appear after all of the deferred tasks have completed, but $.when() doesn't appear to know how to handle an array of Deferred objects. "All done!" is happening first because the array is not a Deferred object, so jQuery goes ahead and assumes it's just done.

I know one could pass the objects into the function like $.when(deferred1, deferred2, ..., deferredX) but it's unknown how many Deferred objects there will be at execution in the actual problem I'm trying to solve.

link|improve this question

feedback

2 Answers

up vote 26 down vote accepted

Try this:

$.when.apply(null, my_array);

See http://jsfiddle.net/YNGcm/21/

link|improve this answer
1  
This works, awesome. :) I'm amazed I wasn't able to dredge up such a simple change via Google! – adamjford Apr 11 '11 at 20:42
2  
that's because it's a generic method, not specific to $.when - f.apply(ctx, my_array) will call f with this == ctx and the arguments set to the contents of my_array. – Alnitak Apr 11 '11 at 20:44
@Alnitak: I'm a little embarrassed that I didn't know about that method, considering how long I've been writing JavaScript now! – adamjford Apr 11 '11 at 20:49
1  
FWIW, the link in Eli's answer to an earler question with discussion of passing $ vs null as the first parameter is worth a read. In this particular case it doesn't matter, though. – Alnitak Apr 11 '11 at 20:50
sweet, took a bit of searching to find this, but it solved my problem succinctly. – Stephen Jun 5 '11 at 12:16
show 1 more comment
feedback

You can apply the when method to your array:

var arr = [ /* Deferred objects */ ];

$.when.apply($, arr);

How do you work with an array of jQuery Deferreds?

link|improve this answer
Wow, I am slow today... – Eli Apr 11 '11 at 20:48
I actually saw that question but I guess all the extra details in that question caused the answer to my problem (which was right in there) to fly right over my head. – adamjford Apr 11 '11 at 20:50
@adamjford, if it makes you feel any better, I found your question easier to consume (and first on my particular Google search for this exact issue). – patridge Nov 10 '11 at 21:09
@patridge: Happy to hear it helped you out! – adamjford Nov 10 '11 at 22:35
feedback

Your Answer

 
or
required, but never shown

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