I have a group of fade out animations, after which I want to run a group of animation calls.
How can I make sure one is run after the other?
If I do this:
$(div1).fadeOut(600);
$(div2).fadeOut(600);
$(div3).fadeOut(600);
$(div4).animation({opacity:1},600);
$(div5).animation({opacity:1},600);
$(div6).animation({opacity:1},600);
The animations run in parallel.
The above code is just a simplification/abstraction of the problem. I can't group all the calls in one function, and in real life there is a variable number of elements, each managed by it's own class.