So what I want to do is to coordinate some effects using jQuery for some AJAX calls that I\'m working with. My problem is that the fadeIn for the second div fires at the same ti
You can do this by using a callback. Check out the jQuery docs.
jQuery("#div1").fadeOut("slow", function() { jQuery(this).fadeIn('slow'); });
Pretty much all of the jQuery effects take a callback to execute after the effect is over.