[jQuery] Load problem

2006-10-10 Thread Glen Lipka
Just updated to 1.0.2. I am not sure what I am doing wrong on this page.http://glenlipka.kokopop.com/jQuery/slideMenu.htm - this one works. I explicitly put the divs on the page. http://glenlipka.kokopop.com/jQuery/slideMenu/slideMenu.htm - this one does not work. In this one, I am trying to make

Re: [jQuery] Load problem

2006-10-10 Thread Karl Swedberg
Hi Glen,When I put "jQueryGlobalFunctions();" into FireBug, I got "False." I'm guessing that your "return false" inside toggle() is in the wrong place. Try putting it right after $("img.handle").src("images/barHandleup.gif"); and $("img.handle").src("images/barHandledown.gif"); and remove it from

Re: [jQuery] Load problem

2006-10-10 Thread Karl Swedberg
On Oct 10, 2006, at 1:41 PM, Karl Swedberg wrote:When I put "jQueryGlobalFunctions();" into FireBug, I got "False." I'm guessing that your "return false" inside toggle() is in the wrong place. Try putting it right after $("img.handle").src("images/barHandleup.gif"); and 

Re: [jQuery] Load problem

2006-10-10 Thread Glen Lipka
It's not obvious. I'm not that good. :) I need the fundamentals.So I tried putting return false after the img lines as you suggested, but that didn't change it.I also pulled it out completely and that had no change either. If I get rid of the call back I end up with: $(body).prepend(div

Re: [jQuery] Load problem

2006-10-10 Thread Glen Lipka
Ok, I took out {test: true}, and now it works.What is the thing for? It's in the API, but the AJAXModule Wiki page did not have it.Maybe someone should check the API detail for Load and see if the specifics are not valid anymore? GlenOn 10/10/06, Glen Lipka [EMAIL PROTECTED] wrote: It's not

Re: [jQuery] Load problem

2006-10-10 Thread Glen Lipka
This works perfect. Thank you.What is the difference between having the test and not having the test the way I wrote previously?GlenOn 10/10/06, Karl Swedberg [EMAIL PROTECTED] wrote: On Oct 10, 2006, at 2:30 PM, Glen Lipka wrote: It's not obvious. I'm not that good. :) I need the fundamentals.So