Hi Miiitch,
You can put the content fade in the callback of the last logo fadeOut. // ... .fadeOut(1000, function() { $('#content').fadeIn(1000); }); --Karl ____________ Karl Swedberg www.englishrules.com www.learningjquery.com On Jul 3, 2008, at 6:09 PM, Miiitch wrote:
So I want to be able to fadeIn an element (#logo), then fadeOut the same element, then fadeIn a different element (#content). So the logo fades in, then out, then the content fades in. I've already got the logo fading part: $("#logo").fadeTo(1000, 0).fadeIn(1000) .fadeTo(4000, 1).fadeOut(1000); But no matter what I do, I can't make the content fade in smoothly after the logo fading is finished (about 7 seconds). The logo fades in then out in the very center of the page, and I want the content to fade in (not out) in the same spot. Is this possible? If so, how would I go about doing it?