Answered
Wait
I'm sure this is asked a lot. Is there an easy way to make a
function wait before doing something? i.e. wait(1000); or is the
only way to do it to use getTime(); and whatnot? How do i do it?
i want it to be like this:
myFunction = function ( ) {
do something;
do something else
wait some seconds
myOtherFunction ( );
}
i want it to be like this:
myFunction = function ( ) {
do something;
do something else
wait some seconds
myOtherFunction ( );
}