Top "Mutation-events" questions

Mutation Events have been deprecated in favor of Mutation Observers.

Detect changes in the DOM

I want to execute a function when some div or input are added to the html. Is this possible? For …

javascript dom mutation-events mutation-observers
Most efficient method of detecting/monitoring DOM changes?

I need an efficient mechanism for detecting changes to the DOM. Preferably cross-browser, but if there's any efficient means which …

javascript dom mutation-events mutation-observers
Using DOMSubtreeModified mutation event. in jQuery

I have used the following jQuery code on my page and everything works fine on chrome.But when I open …

jquery html firefox mutation-events
Alternative to DOMNodeInserted

DOMNodeInserted is known to make dynamic pages slow, MDN even recommends not using it altogether, but doesn't provide any alternatives. …

javascript dom firefox-addon dhtml mutation-events
Listening to events of a contenteditable HTML element

I'm trying to figure out if there is any way to listen to events like focus or change of an …

javascript html dom mutation-events
is there an alternative to DOMAttrModified that will work in webkit

I need to leverage this DOM event. IE has onpropertychange, which does what I need it to do also. Webkit …

dom webkit mutation-events
DOM mutation events replacement

Since DOM mutation is marked as deprecated by the w3c (see http://www.w3.org/TR/DOM-Level-3-Events/#events-mutationevents), …

html events dom dom3 mutation-events
DOMNodeInserted equivalent in IE?

Other than using a timer to count the number of elements over time and looking for changes, I can't think …

javascript internet-explorer dom mutation-events
DOM Mutation event in JQuery or vanilla Javascript

Are there any DOM mutation events in JQuery or in vanilla Javascript that fire cross browser? To clarify, say I …

javascript jquery dom mutation-events
Detect added element to DOM with Mutation Observer

I'm adding some element to DOM after drag event. I need to detect this element and the moment when this …

javascript jquery html mutation-events