Is there a way to detect a DOM-node change in Javascript? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T03:31:38Zhttp://stackoverflow.com/feeds/question/876163http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/876163/is-there-a-way-to-detect-a-dom-node-change-in-javascript0Is there a way to detect a DOM-node change in Javascript?Nicky Hajal2009-05-18T03:36:29Z2009-05-18T04:15:27Z
<p>I am looking for a way to detect if anything changes within a given DOM node. Is there an event or other technique that would do this?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/876163/is-there-a-way-to-detect-a-dom-node-change-in-javascript/876176#8761761Answer by Praveen Angyan for Is there a way to detect a DOM-node change in Javascript?Praveen Angyan2009-05-18T03:42:59Z2009-05-18T03:42:59Z<p>You have something called DOM mutation events defined:</p>
<p><a href="http://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-eventgroupings-mutationevents" rel="nofollow">http://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-eventgroupings-mutationevents</a></p>
<p>Currently this only works in Firefox, not on Internet Explorer.</p>
http://stackoverflow.com/questions/876163/is-there-a-way-to-detect-a-dom-node-change-in-javascript/876232#8762320Answer by dasha salo for Is there a way to detect a DOM-node change in Javascript?dasha salo2009-05-18T04:15:27Z2009-05-18T04:15:27Z<p>As Praveen Angyan said Mutation events as not currently supported by IE.</p>
<p>What events do you want to catch? If onclick or onchange then try use event bubbling to catch an event. Please provide more information on what you want to do.</p>