Search code examples
jqueryhighlightpulse

jQuery pulsate effect


Hoping someone can give me some pointers. I'm trying to add a 'pulsate' effect onto a div after a button is clicked.

The following script I've written is fine and does work - however I'd ideally like it to alternate between background colours rather than fading the div out completely.

Am I using the wrong effect? Or is there a way of combining a pulse and highlight perhaps?

$(document).ready(function() {
    $("li#emailSellerLink a").click(function(){
        $("#contactColumn").effect( "pulsate", {times:3}, 5000 );
    });
});

Thanks


Solution

  • You can use the .animate() function - http://jsfiddle.net/Fe8Jy/

    $("a").click(function(e) {
        e.preventDefault();
        for (var i = 0; i < 3; i++ ) {
            $("#contactColumn")
                .animate( { backgroundColor: "#f00" }, 2000 )
                .animate( { backgroundColor: "transparent" }, 2000 );
        }
    });