How can I execute multiple, simultaneous jquery effects?

jQuery UI will queue the effects by default. Use dequeue() to run simultaneously:

    var opt = {duration: 7000};

    $('#lbl').effect('highlight', opt).dequeue().effect('bounce', opt);   

Demo in JsFiddle

Leave a Comment