Hello, I have a list of items each containing metadata which I access using John's Metadata plugin:
<li id="item_1" class="{subitems_count:3}"><a href="#">Update</a></li> <li id="item_2" class="{subitems_count:7}"><a href="#">Update</a></li> I need to update/change the metadata on individual items when I click them, because the new data will be used further in the application. When an "Update" link is clicked an ajax call is made to the server and the new data is returned. My problem is I don't know how to replace the old metadata with the new one returned by the ajax call. Can anyone point me in the right direction? I've been searching/ reading for the past few hours to no avail. Thank you.