What I am attempting to do is isolate the actual clicked item on the loop due to the fact that it’s triggered for the parent items.
For example if i have:
A
..B
..C
….D
and the user clicks on “C”, the event is fired for C,D,A,C,D.
In my checkChange event I only want to update the database for the “C” element and not for the other items that are called. Currently I don’t see a way to isolate from the passed event only the clicked (C) element.