What I'm trying to achieve is to keep track of any changes (e. g. user input, field added, ...) within a <table>
-element.
In my specific scenario users can edit fields, add rows, add fields, remove fields and rows, select something in <select>
-elements, etc.
Of course I could just attach my "change"-listener to all of those actions, but I think there must be a better way.
I tried attaching a $('#myTable tbody').change()
-listener to it, but that doesn't fire...
Maybe some of you know of a way to keep track of table changes without having to subscribe to every possible user action manually?