[jQuery] Re: ajax form loader displays on load even though loader is set to hidden

2007-05-24 Thread JimD
Thanks Mike. I'll mess around with it. Whats strange is that this has been working in my code. I havent changed the version of jquery or anything weird. On May 24, 3:10 pm, "Mike Alsup" <[EMAIL PROTECTED]> wrote: > You're hiding the busy div before it's been added to the DOM. Try > changing t

[jQuery] Re: ajax form loader displays on load even though loader is set to hidden

2007-05-24 Thread Mike Alsup
You're hiding the busy div before it's been added to the DOM. Try changing that code around a little: $('Requesting content...') .ajaxStart(function() {$(this).show();}) .ajaxStop(function() {$(this).hide();}) .appendTo('#loader') .hide(); On 5/24/07, JimD <[EMAIL PRO

[jQuery] Re: ajax form loader displays on load even though loader is set to hidden

2007-05-24 Thread JimD
Ok noted one mistake on my part this should be $("#busy").hide(); But even with that it doesnt work. This is in both IE7 and FF2. Stumped. It use to work. On May 24, 2:31 pm, JimD <> wrote: > Hi all > > using Ajax form. Which works great, but Ive noticed lately when my > page loads now the l