vote up 1 vote down star

When I use the fade/slide/animate functions in jQuery the callback gets called multiple times for each element the effect is applied to. This is by design of course. I just want to know when the last callback is called.

Here is what I came up with- it fades out all the divs and displays an alert() when the last callback is fired.

$("div").fadeOut(1000, function ()
{
     if ($("div").index($(this)) == $("div").length-1)
          alert("this is the final callback");
});

Is there a simpler way to check which callback is the last one or is this the only way to do it?

flag

3 Answers

vote up 1 vote down check

That would produce the alert when the fadeOut on the last element was called. That would not necessarily be the last fadeOut.

var numDivs = $('div').length;
$('div').fadeOut(1000, function() {
  if( numDivs-- > 0 ) return;
  alert('this is the final fadeout to complete');
});
link|flag
Ahhh, I see what you're saying. Good call! – Gromer May 26 at 8:40
yep, good thinking. I like the other solutions too but this one 100% correct. – razor May 26 at 8:57
Where is count defined? – Josh Stodola Aug 5 at 16:04
Apologies - should be 'numDivs' inside the function. – samjudson Aug 6 at 15:24
vote up 0 vote down
$("div:not(:last)").fadeOut(1000);
$("div:last").faedOut(1000, funtion() {
    alert("Hey!");
});
link|flag
nice, i haven't used not() before. good to know! – razor May 26 at 8:52
vote up 0 vote down

What you are doing seems fine, a more jQuery'ish version might be:

$("div").fadeOut(1000, function ()
{
     if ($(this).is(':last')) {
          alert("this is the final callback");
     }
});
link|flag
I like the simplicity of this! – razor May 26 at 8:52
1  
Would that actually work? $(this) would be a collection of one object, so is(':last') would evaluate to true everytime. – Frank Schwieterman Oct 2 at 22:44

Your Answer

Get an OpenID
or

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