On Aug 22, 10:03 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > > These docs: > > >http://interface.eyecon.ro/docs/animate > > > detail a stop() method which might or might be able to stop the > > animation prematurely. > > ok. but how i can stop $('#id').Pulsate(500, 100); > > $('#id').Pulsate(500, 100).stop() ??? > > because i must stop Pulsate any time. have you a idea ?
i can only guess that the stop() function is what you want, as i'm neither the author nor a user of the plugin providing that feature. In any case, $(...).Pulsate(...).stop() is certainly not what you want because it will stop the animation immediately after you stop it. According to the docs, $(...).stop() is what you'd want. But, again, that's only a guess based on the documentation.