Javascript offers setTimeout(code, interval_in_milliseconds). If your
first animation is of a precise length, you could do something like
this:

function anima1(){
//play animation1, which is 15 seconds long
}

function anima2(){
//play animation2
}

anima1;
setTimeout("anima2", 15000);



On Aug 28, 5:55 am, Ronn <[EMAIL PROTECTED]> wrote:
> Hello all,
>
> I'm new to JQuery and I'm looking for a Sleep or Delay function. I
> have two animations and I want one to not start until the other has
> finished. Any Ideas?
>
> Thanks in advance

Reply via email to