[jQuery] Re: animate in order

2008-08-28 Thread Ronn Ross
Brian, Thanks that worked great. I'm still new to JQuery, but community has been a great help. Thanks again for the help, Ronn On Thu, Aug 28, 2008 at 1:31 PM, Brian Schilt <[EMAIL PROTECTED]> wrote: > > Ok, our syntax was a bit jacked up. I created a test page, this will > work: > > $('#backDr

[jQuery] Re: animate in order

2008-08-28 Thread Brian Schilt
Ok, our syntax was a bit jacked up. I created a test page, this will work: $('#backDropLeft').animate({height:550},750,'easeOutBack', function(){ $('#contactBox').fadeIn(1000); }); Make sure that you have jquery-ui loaded up as well otherwise easing won't work. Brian On Aug 28, 12:50 pm, "Ro

[jQuery] Re: animate in order

2008-08-28 Thread Ronn Ross
Brian Thanks for the response. Unfortunately it still is not working. I tried adding an alert to backDropLeft's callback function like so: $('#backDropLeft').animate({height:550}, {duration: 750, easing: 'easeOutBack'}, function(){ alert("hello"); }); and it didn't al

[jQuery] Re: animate in order

2008-08-28 Thread Brian Schilt
You'll need to put the second animation in the callback function of the first. $('#backDropLeft') .animate({height:550}, {duration: 750, easing:'easeOutBack'}, function(){ $('#contactBox').fadeIn(1000, function() { }); }); Brian On Aug 28, 9:56 am, Ronn <[EMAIL PROTECTED]> wrote: > I