Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm having trouble with the following code:

$(".active").animate({
            opacity:0
        },{queue: false, duration:1000}, function(){  
            console.log("queue??");
            $(".active").css('display', 'none');
            $(".active").removeClass("active");
            initiatePage();
        });

After adding queue: false, the function() ain't running at all... but if I don't, they just queue up, and I don't want that to happen either.. Is there a way to make this animation and everything going with it queue: false??

Let me know if I can provide anything to make it easier for you to help..

Thanks!

share|improve this question

2 Answers

up vote 1 down vote accepted

Read the animate() manual. When using the options the callback should be passed using the complete option.

complete: A function to call once the animation is complete.

$(".active").animate({opacity:0},{
    queue       : false,
    duration    : 1000,
    complete    : function() {  
        $(this).hide().removeClass('active');
        initiatePage();
    }});
share|improve this answer
in this case, you can also cache the $('.active') into a variable – Huangism Nov 9 '12 at 18:27
Thanks. Actually it's better to use this in case one or more of the elements going through the animation at the same time. – iMoses Nov 9 '12 at 18:29
it's hard to tell from the OP's code if he wants everything to animate or just the current one – Huangism Nov 9 '12 at 18:30
the complete callback will run once for every element in the jquery stack - separately. That way an element's animation callback will only affect itself. – iMoses Nov 9 '12 at 18:31

With the core plugin jquery-timing you can shorten the solution:

$(".active").animate({opacity:0},{queue:'foo', duration:1000})
    .join('foo').hide().removeClass('active').then(initiatePage);

Using .join() in the jQuery chain does the trick.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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