I wondered about if it’s possible to add two or more complete functions to the .animate() event, like this:
.animate(properties [, duration] [, easing] [, complete][, complete][, complete])
because I don’t want to have all the things that happened in one function. I want them separated in different complete functions!
Is this possible?
No, but you could easily pass in an anonymous function that calls your two (or more) functions like this:
Where callback1 and callback2 are functions.