Maybe something like: $(window).load(function() { $('#myLogo').fadeIn('slow', function() { $('#navigation').fadeIn('slow'); }); });
That will fade in an element with id myLogo, then after it finishes fading in, it will fade in an element called navigation. See here: http://docs.jquery.com/Events/load#fn And here: http://docs.jquery.com/Effects/fadeIn#speedcallback --Erik On 9/15/07, BooZker <[EMAIL PROTECTED]> wrote: > > > I want something so simple, but I do not know how to do it. All I want > is when the page loads to fade in slowly my logo on the page then the > navigation. I just want it to fade in once the page is done loading. > How do i do this? > >