[jQuery] Re: Curious as to why a fadeOut() won't work but a hide() does??

2009-11-13 Thread Dave Methvin
> Any other ideas? :) Well, from the code that you originally showed the possible causes were pretty limited. If there is arbitrary code both before and after that line you showed, it could be almost anything! Can you create a simple test case?

[jQuery] Re: Curious as to why a fadeOut() won't work but a hide() does??

2009-11-13 Thread Joel Taylor
Thanks for the reply Dave, I've actually just snipped this section out of the plug-in code. there is indeed a "return false;" at the end of the submit function. So the form isn't actually submitting and forcing a redirect. Any other ideas? :) On Nov 13, 12:07 pm, Dave Methvin wrote: > My guess:

[jQuery] Re: Curious as to why a fadeOut() won't work but a hide() does??

2009-11-13 Thread Dave Methvin
My guess: If your function doesn't return false to stop the submit, the browser will start navigating to the submit action page immediately. It's probably starting to fade but the page changes before it's anywhere close to done.