[jQuery] Re: flashing/blinking effect

2008-04-08 Thread Fontzter
Have a look at .animate, which can queue these effects. You could likely use opacity. http://docs.jquery.com/Effects/animate#paramsdurationeasingcallback Dave

[jQuery] Re: flashing/blinking effect

2008-04-08 Thread bcherry
If I'm not mistaken, you need setTimeoutInterval(). so, just make a timeout like this: setTimeoutInterval(2000,function(){$ (".element").css({backgroundColor:"none"});}); this will wait 2 seconds (2000 ms), and then apply background color "none" to each ".element". Feel free to place this where