vote up 3 vote down star

How do I have two effects in jQuery run in sequence, not simultaneously? Take this piece of code for example:

$("#show-projects").click(function() {
    $(".page:visible").fadeOut("normal");
    $("#projects").fadeIn("normal");
});

The fadeOut and the fadeIn run simultaneously, how do I make them run one after the other?

flag

3 Answers

vote up 10 vote down check

You can supply a callback to the effects functions that run after the effect has completed.

$("#show-projects").click(function() {
    $(".page:visible").fadeOut("normal", function() {
        $("#projects").fadeIn("normal");
    });
});
link|flag
vote up 6 vote down

What you want is a queue.

Check out the reference page http://docs.jquery.com/Effects/queue for some working examples.

link|flag
vote up 1 vote down

Check out this tutorial (towards the bottom)

http://www.detacheddesigns.com/blog/blogSpecific.aspx?BlogId=78

link|flag

Your Answer

Get an OpenID
or

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