[jQuery] Re: Fade in/ out image

2009-10-10 Thread Karl Swedberg
On Oct 10, 2009, at 7:45 PM, Dave Maharaj :: WidePixels.com wrote: How can i remove the image in an id but keep the div? image here I want to fade the image out then remove it completely from the div keeping the div so the new content can be loading inside it? Dave This should do i

[jQuery] Re: Fade in / Out

2009-08-07 Thread Liam Potter
$("div").fadeIn(300).animate({opacity:1},5000).fadeOut(300); Dave Maharaj :: WidePixels.com wrote: I was wondering how do you make text fade in for a specific amount of time then fade out. I have the fade in / out part..i just cant figure out the duration so it stays there after fading in fo

[jQuery] Re: Fade in / Out

2009-08-06 Thread CQuick
You might be able to do something similar to the following: function fadeIn() { $(".myText").fadeIn("slow", function () { window.setTimeout("fadeOut();",5000); } } function fadeOut() { $(".myText").fadeOut("slow"); } On Aug 6, 6:01 pm, "Dave Maharaj :: WidePixels.com" wrote

[jQuery] Re: Fade in, out, then in?

2008-07-03 Thread Karl Swedberg
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