[jQuery] Re: Chaining of display effects.

2007-07-14 Thread navvywavvy
} ); > > Notice how on the SlideUp function, I have a callback right after it. This > makes it wait. > Additionally, I used the pause plugin to wait an additional 200ms, because > 0ms, seemed too abrubt. > > Based on your example, I think this would work for you. > > Glen > > On 7/13/07, navvywavvy <[EMAIL PROTECTED]> wrote: > > > > > Okay, here is an example: > > >http://cotworld.com/jquery-test/

[jQuery] Re: Chaining of display effects.

2007-07-14 Thread navvywavvy
ideDown("medium"); > } > ); > }); > > } ); > > Notice how on the SlideUp function, I have a callback right after it. This > makes it wait. > Additionally, I used the pause plugin to wait an additional 200ms, because > 0ms, seemed too abrubt. > > Based on your example, I think this would work for you. > > Glen > > On 7/13/07, navvywavvy <[EMAIL PROTECTED]> wrote: > > > > > Okay, here is an example: > > >http://cotworld.com/jquery-test/

[jQuery] Re: Chaining of display effects.

2007-07-13 Thread navvywavvy
x27;, function() { >// Hide Form1 if necessary >$("Form2").slideDown(); >$("Form1").slideUp(); > > }); > > That would result in button1 always showing form1 and hiding form2, > and button2 always showing fo

[jQuery] Re: Chaining of display effects.

2007-07-13 Thread navvywavvy
Okay, here is an example: http://cotworld.com/jquery-test/

[jQuery] Chaining of display effects.

2007-07-13 Thread navvywavvy
I've got two forms. When the page loads, both of the forms are hidden from view with display: none;. When Button1 is clicked, I want Form1 to appear. When Button2 is clicked, I want Form2 to appear. If Form1 is visible and Button1 is clicked, I want Form1 to disappear and THEN I want Form2 to ap