[jQuery] Ajax Not Working A Second Time
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: A1 A2
[jQuery] Ajax Not Working A Second Time
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: [c