Note that there are some explanatory texts on larger screens.

plurals
  1. POMost efficient method of detecting/monitoring DOM changes?
    text
    copied!<p>I need an efficient mechanism for detecting changes to the DOM. Preferably cross-browser, but if there's any efficient means which are <em>not</em> cross browser, I can implement these with a fail-safe cross browser method.</p> <p>In particular, I need to detect changes that would affect the text on a page, so any new, removed or modified elements, or changes to inner text (innerHTML) would be required.</p> <p>I don't have control over the changes being made (they could be due to 3rd party javascript includes, etc), so it can't be approached from this angle - I need to "monitor" for changes somehow.</p> <p>Currently I've implemented a "quick'n'dirty" method which checks <code>body.innerHTML.length</code> at intervals. This won't of course detect changes which result in the same length being returned, but in this case is "good enough" - the chances of this happening are extremely slim, and in this project, failing to detect a change won't result in lost data.</p> <p>The problem with <code>body.innerHTML.length</code> is that it's expensive. It can take between 1 and 5 milliseconds on a <em>fast</em> browser, and this can bog things down a lot - I'm also dealing with a large-ish number of iframes and it all adds up. I'm pretty sure the expensiveness of doing this is because the innerHTML text is not stored statically by browsers, and needs to be calculated from the DOM every time it is read.</p> <p>The types of answers I am looking for are anything from the "precise" (for example event) to the "good enough" - perhaps something as "quick'n'dirty" as the innerHTML.length method, but that executes faster.</p> <p>EDIT: I should also point out that whilst it would be "nice" to detect the precise element that has been modified, it is not an absolute necessity - just the fact that there has been <em>any</em> change would be good enough. Hopefully this broadens people's responses. I'm going to investigate Mutation Events, but I still need a fallback for IE support, so any whacky, creative, outside-of-the-square ideas would be very welcome.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload