Opened 14 years ago
Closed 14 years ago
#3221 closed enhancement (fixed)
Add "stop all" function that kills all queued animations
Reported by: | dalangalma | Owned by: | flesler |
---|---|---|---|
Priority: | minor | Milestone: | 1.3 |
Component: | effects | Version: | 1.2.6 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
This was added by the old Interface code in change http://dev.jquery.com/changeset/1311, but it'd be nice to have it in jQuery core. Right now you can stop the current animation with stop(), but it would be nice to also be able to stop all future animations as well.
Change History (2)
comment:1 Changed 14 years ago by
Owner: | set to flesler |
---|---|
Status: | new → assigned |
comment:2 Changed 14 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
This can be done like this:
$(...).stop( true );
Note: See
TracTickets for help on using
tickets.
Yeah.. I encountered this situation many times. I'll handle this.