You could try this:

<blink>I'm blinking like it's 1999</blink>

 :-)

Or you could use a setInterval:

setInterval(function() {
    $('tr:lt(2)').toggleClass('blinky');
}, 500);


That one toggles the "blinky" class on the first 2 TR elements every 1/2 second.


--Karl
____________
Karl Swedberg
www.englishrules.com
www.learningjquery.com




On Jul 1, 2008, at 9:15 PM, sketchy wrote:


I think you misunderstood my post. It works fine but i'm looking to
add more with an effect such as flashing/blinking rows to represent
that its important to the visitor to check it out.

On Jul 1, 2:55 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:
A zebra stripe doesn't need any Javascript given IE7, either. The
tr:hover bit is accepted by the browser if your doctype is set to
strict mode.

On Jun 30, 10:15 pm, sketchy <[EMAIL PROTECTED]> wrote:

I recently got acquainted with jquery and implemented this tutorial on
zebra striping to my 
site:http://docs.jquery.com/Tutorials:Zebra_Striping_Made_Easy

and its awesome but i was wondering it its possible to add like a
blinking/flashing effect to one or a couple of the rows. The effect
would start when the visitor opens the page and then stop when they
leave.

My knowledge on jquery is quite limited right now so it would great if
someone could help me out. Thanks

Reply via email to