The code as written...
tabContainers.fadeOut('slow', function() {
second.fadeIn('slow');
});
explicitly calls fadeIn()
after fadeOut()
is complete. You're passing fadeIn it as a callback to the second parameter to fadeOut, to be executed on completion.
Have you tried this?
tabContainers.fadeOut('slow');
second.fadeIn('slow');
meagar
2010-01-29 15:19:31