I'm curious to know if there is an efficient way of detecting ANY change of the DOM.
Read that DOMSubtreeModified
is not compatible with modern browsers.
I was thinking in hashing
all the information contained in the DOM, and compare it with a timer, with the refreshed DOM.
I'm just trying to fire an event when the DOM is changed.
What do you think of this hashing the DOM approach?