What I'm trying to achieve is to keep track of any changes (e. g. user input, field added, ...) within a \[code\]<table>\[/code\]-element. In my specific scenario users can edit fields, add rows, add fields, remove fields and rows, select something in \[code\]<select>\[/code\]-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 \[code\]$('#myTable tbody').change()\[/code\]-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?Thanks in advance for your thoughts and efforts!