David Yell
David Yell

Reputation: 11855

jQuery UI Pulsate in Chrome

I'm having trouble getting some text to pulsate using the jquery UI plugin in Chrome.

Here is my html,

<div id="discount-banner">
  <div><p>Special <?php echo $val?>10.00 DISCOUNT Activated - Now Only <?php echo $val ?>27.95 + FREE BONUSES</p></div>
</div>

Any my javascript,

$('#discount-banner > div').pulsate();

Upvotes: 0

Views: 399

Answers (2)

James Dayeh
James Dayeh

Reputation: 526

Check out this new plugin

Works like charm and the pulsate effect works on all browsers .

Upvotes: 0

David Yell
David Yell

Reputation: 11855

Sod's law. Managed to solve my own question right after I posted it.

$('#div').effect('pulsate')

Upvotes: 1

Related Questions