[jQuery] Re: link stops working in fragment returned from ajax depending on select

2008-02-05 Thread K Bouton
Anyone have any suggestions. I have tried liveQuery and I have tried it with the Forms plugin but I just can not get the first set of returned links to act as links after the second set of data has been returned. To see it in action http://ncas-cms.nerc.ac.uk/data/startFiles/anim_overlay.php click

[jQuery] Re: link stops working in fragment returned from ajax depending on select

2008-01-30 Thread K Bouton
Hey thanks. I tried this but not sure where to put it. This doesn't work. [code] $document.ready(function() { $("#wrapBA").hide(); $("select#ba").livequery('change',(function() { var ba = $("select#ba").val(); $.ajax({ type: "POST", url: "not_wo

[jQuery] Re: link stops working in fragment returned from ajax depending on select

2008-01-29 Thread [EMAIL PROTECTED]
Once your data is loaded into the page your bind events are not bound anymore, since you replaced the DOM information. You can either rebind events with running a rebind function, or you can use live jQuery http://brandonaaron.net/docs/livequery/ Should fix your problem. -Kyle On Jan 29, 6:08 a

[jQuery] Re: link stops working in fragment returned from ajax depending on select

2008-01-29 Thread K Bouton
More info - the links work as expected in IE 7.0.x but not Firefox 2.0.x