I’ve had to make a custom animation queue to timeline my animations.
Is there a way to remove the pre-defined slideUp() or slideDown() animations from the fx queue? I know you use queue:false when using animate(), but is it possible to do with a predefined animation?
I guess it’s not possible out of the box.
Looking at je jQuery source code, the pre-defined animations are executed using the animate() overload with 4 parameters:
Possible solution could be to redefine them in you code using the animate overload that takes an option object literal as second param (like you are already using).
Although I would ne recommend this as it sounds like a lot of work, not so reliable in the end…
Hope this helps,
d.