[jQuery] Ajax Not Working A Second Time

2009-10-05 Thread GLSmyth
I have some simple code: [code] $(document).ready( function() { $('.A1').click( function() { $('#Info').load('Test_A1.htm'); } ); $('.A2').click( function() { $('#Info').load('Test_A2.htm'); } ); } ); [/code] followed in the body with:

[jQuery] Ajax Not Working A Second Time

2009-10-05 Thread GLSmyth
I have some simple code: $(document).ready( function() { $('.A1').click( function() { $('#Info').load('Test_A1.htm'); } ); $('.A2').click( function() { $('#Info').load('Test_A2.htm'); } ); } ); followed in the body with: body div

[jQuery] Easy show()/hide() Question

2009-09-14 Thread GLSmyth
I am missing something fundamental and am sure that someone can point me in the right direction. I have a list like so: li id=GalleryMenua href=../Gallery/Default.htmDD/a ul class=DoNotDisplay lia href=../Gallery/Santuary.htmSantuary/a/li lia

[jQuery] Hover Not Working As Expected

2009-09-11 Thread GLSmyth
I am missing something fundamental and am sure that someone can point me in the right direction. I have a list like so: li id=GalleryMenua href=../Gallery/Default.htmDD/a ul class=DoNotDisplay lia href=../Gallery/Santuary.htmSantuary/a/li lia

[jQuery] Easy show()/hide() Question

2009-09-10 Thread GLSmyth
I am missing something fundamental and am sure that someone can point me in the right direction. I have a list like so: li id=GalleryMenua href=../Gallery/Default.htmDD/a ul class=DoNotDisplay lia href=../Gallery/Santuary.htmSantuary/a/li lia

[jQuery] Re: Callback Not Working

2009-08-25 Thread GLSmyth
Aaron - Thanks so much, that works like a champ. I never thought of the fact that the this pointer was changing context. Thanks so much for the code and the explanation, that knowledge is very helpful. Cheers - george On Aug 24, 7:00 pm, Aaron Gundel aaron.gun...@gmail.com wrote: Hi

[jQuery] Callback Not Working

2009-08-24 Thread GLSmyth
I am looking to fade text out when the mouse passes over it and replace it with text that is faded in. My understanding is that this needs to be done through a callback, as the text needs to fade out completely before fading in. However, when I try to implement this idea the content does not fade

[jQuery] Callback Not Working As Expected

2009-08-20 Thread GLSmyth
I am looking to fade text out when the mouse passes over it and replace it with text that is faded in. My understanding is that this needs to be done through a callback, as the text needs to fade out completely before fading in. However, when I try to implement this idea the content does not fade