Is there a way to detect a DOM-node change in Javascript? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T03:31:38Z http://stackoverflow.com/feeds/question/876163 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/876163/is-there-a-way-to-detect-a-dom-node-change-in-javascript 0 Is there a way to detect a DOM-node change in Javascript? Nicky Hajal 2009-05-18T03:36:29Z 2009-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#876176 1 Answer by Praveen Angyan for Is there a way to detect a DOM-node change in Javascript? Praveen Angyan 2009-05-18T03:42:59Z 2009-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#876232 0 Answer by dasha salo for Is there a way to detect a DOM-node change in Javascript? dasha salo 2009-05-18T04:15:27Z 2009-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>