Is there an event in JavaScript that fires whenever an element is added/removed/modified?

Not very much detail, but it's a simple question.

link|improve this question

possible duplicate of is it possible to tell if DOM was modified, and which part? – Felix Kling May 1 '11 at 23:49
feedback

2 Answers

up vote 1 down vote accepted

DOM mutation events are available in the current version of all major browsers, although not all events are implemented in all browsers. In particular, the catch-all DOMSubtreeModified is not available in all browsers. However, DOMNodeRemoved and DOMNodeInserted are both well supported.

Some caveats:

  • IE <= 8 has no support for these events.
  • In WebKit, all these events are asynchronous within editable content (i.e. using contenteditable or designMode)
link|improve this answer
feedback

Mozilla has a nice list of these types of events:

https://developer.mozilla.org/en/DOM_Events

link|improve this answer
Awesome. Good to know. – Dan May 1 '11 at 23:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.