I wanna synchronized functions just like jQuery's $.ajax({ .., async: false, .. });
.
function A() { lalala .. };
function B() { dadada .. };
function C() { .. };
, those all including some effect like fadeIn, Out, slide... etc.
However I just found if those functions called like below..
A();
B();
C();
All effect start at almost same time. In my understanding, this happens because the function called synchronously but it doesn't mean that function B() started after function A() was completely finished.. right?
Then, how can I make those functions work in order?
I found a way use callback function but it's not enough for me..