How do I make custom functions chain-able with jQuery's?
- by sergio
I need a "callfront" or "precall" (the opposite of "callback" ¿?) to add in MANY places before an animation occurs in an existing plugin, To be used like e.g.
$(some_unpredictable_obj).preFunct().animate(…
The problem is, as I said they are MANY places, and all of them are different animations, on different objects.
I can TELL where all of them…