I have a function called x(). I want to call x() every time an arbitrary node's innerHTML property is being changed (please note that I want x() to be called for all nodes, not just 1 node). Initially, I thought innerHTML was a function of the HTMLElement object, and wanted to monkey patch it, but after playing around in Chrome's Javascript console, I failed to find the innerHTML function in the HTMLElement object.
I also thought about using the DOMAttrModified event (http://help.dottoro.com/ljdchxcl.php) but it's not supported in Chrome. Any suggestions are welcome.