Hoping someone can give me some pointers. I am trying to add a ripple effect to a div after clicking a button.
The following script that I wrote is good and works, but I would ideally want it to alternate between the background colors and not div completely disappear.
Am I using the wrong effect? Or is there a way to combine momentum and backlight, perhaps?
$(document).ready(function() { $("li#emailSellerLink a").click(function(){ $("#contactColumn").effect( "pulsate", {times:3}, 5000 ); }); });
thanks
V neal
source share