[jQuery] Re: Using slideDown in a slideUp callback

2009-06-24 Thread Matthew
I think I figured out the problem. @Ricardo - yeah I agree there shouldn't be a conflict. I'm not using any other scripts. @fredrik - I had tried having the callback call a separate function, didn't work. What seemed to be the issue was that I was doing the effect animations on an iframe load:

[jQuery] Re: Using slideDown in a slideUp callback

2009-06-24 Thread fredrik
If there's some kinda conflict test to make an extra callback call, ie. function doSlideDown(){ $("#externalform").slideDown(500); } $("#pageWrap").slideUp(1000, function(){ doSlideDown(); $("#btn_uopBack").fadeIn(250); }) ..fredrik On Jun 23, 8:52 pm, Matth

[jQuery] Re: Using slideDown in a slideUp callback

2009-06-24 Thread Ricardo
One should not prevent the other. It's probably some conflict, do you have any other scripts besides jQuery in your page? On Jun 23, 3:52 pm, Matthew wrote: > Hi all, >    I am trying to slideUp a container Div and using the slideUp's > callback parameter call slideDown on a different element th