jQuery Stop Effects - Form Validation
I made a form validation script whi开发者_运维百科ch uses the jQuery UI library to pulsate the invalid fields when submitted.
My question is how do I stop the effects from queuing? I looked into animation queuing, however, it does not work with effects. I've tried:
$(item).stop();
$(item).stop().effect(...);
$(item).stop(true,true);
The only results I get are the effects glitches off the screen ect...
精彩评论