My Ajax needs page refresh. Why??
HI,
I have a table which contains meeting minutes. Each row has an option to delete a meeting minute. Everything works fine in via the ajax calls to my backend php script including the calling up the view fragment replaces the table in it's div holder with refreshed data minus the record i just deleted.
At this point however I am not able to use the delete option again with out refreshing the page. It is as though the new table can not see the jquery script whcih is in the page header. I have tried to also include the jquery script in the my view fragments, which works but also means that all my subsiquent clicks are picked up and run in each jquery instance. So when I add a new record, I end up with 2 or 3 records being posted.
How can i get the new table to see the original jquery in the page header?
Thanks