I'm wondering how to listen to ANY change in the DOM what so ever. For example:
- A class has been added to something? I want to catch that and process stuff.
- A new element has been injected? I want to catch that and process stuff.
Literally any DOM edit. I don't need to know what the edit was exactly, just that it has been edited.
Non of the other questions regarding DOM changes in Stackoverflow have a solution for detecting changes in data-attributes or simple element properties for example. Only classes or nodes being inserted / removed.
Any ideas?