.Effect issue - animation sequences
Hi folks
i was a bit bemused this morning and i wonder if someone can explain
what is happening
els is a set of divs say
$(els).each( function (i) {
$(this).effect('pulsate',500);
});
setTimeout( function (){anotherFunction()},2000)
I have a set of elements (6 say) and i wanted a pulsating effect on
them - hoping to run for 1/2 sec.
After 2 secs i wanted it to do something, so i stuck it in a timer.
However (some of) the els are still pulsating when the timeouted
function begins to run?
i was presuming that as they were running concurrently they would
finish approx 1/2 sec later??
Why is this happening??
Thanks a lot all