jQuery - run multiple methods sequentially
if i do:
method();
method();
both calls will run in parallel (at same time)
i just would like to make the second method(); wait until the first
method(); is finished to start, and do it dynamically cause i can't know
how many times i will launch method(); at same time .
Is it possible?
No comments:
Post a Comment