Could you kindly explain a bit more in depth, because my html is dynamically loaded according to the mysql number of results.
Lets say I display thumbnail pictures from a mysql request : each thumbnail has its own tag box which can be updated.
If I have 10 thumbnails, the 10 will have their own tags, but I don't knwo how many pictures I'll have. Maybe 200, maybe 3... It depends on how many images the user has uploaded.
I need to pass to initialTags the $.ajax output. How do I do that?
$.ajax : success : function(myTags) { console.log(myTags); }
initialTags or addTag : myTags
Thanks