[jQuery] Re: Problems getting timing of commands to happen correctly

2008-03-25 Thread Steve Reichgut
Thanks for the suggestions. With some rewriting and changes in the flow, I was able to get it to work. Although I was able to get it to work, I wanted to ask one clarifying question to make sure I am understanding the limits of jQuery methods. In my original code, I wanted to make three things ha

[jQuery] Re: Problems getting timing of commands to happen correctly

2008-03-24 Thread ripple
Here's a good working example. This might help, but of course you will have to tweak the timing to suit your needs. http://2whoa.com/dominate/2008/03/jquery-fades.php Steve Reichgut <[EMAIL PROTECTED]> wrote: Hi everyone, I have been trying to use jQuery to create a relatively si

[jQuery] Re: Problems getting timing of commands to happen correctly

2008-03-24 Thread Jason Huck
You want to place each subsequent effect within the "callback" function of the previous effect, i.e.: $('YOUR_ITEM').EFFECT1(function(){ $(this).EFFECT2(function(){ $(this).EFFECT3(function(){ ...and so on... }); }); }); - jason On Mar 24, 12:25 pm, Steve