Finish one animation then start the other one

$('#Div1').slideDown('fast', function(){
    $('#Div2').slideUp('fast');
});

Edit: Have you checked out the accordion plugin (if that’s what you’re trying to do)?

Leave a Comment