MutationObserver
provides developers with a way to react to changes in a DOM. It is designed as a replacement for Mutation Events defined in the DOM3 Events specification.
Constructor
MutationObserver()
Constructor for instantiating new DOM mutation observers.
new MutationObserver( function callback );
Parameters
callback
- The function which will be called on each DOM mutation. The observer will call this function with two arguments. The first is an array of objects, each of type
MutationRecord
. The second is thisMutationObserver
instance.
Instance methods
void observe( |
void disconnect(); |
Array takeRecords(); |
observe()
Registers the MutationObserver
instance to receive notifications of DOM mutations on the specified node.
void observe(Node
target,MutationObserverInit
options );
Parameters
target
- The
Node
on which to observe DOM mutations. options
- A
MutationObserverInit
object, specifies which DOM mutations should be reported.
NOTE: Adding an observer to an element is just like addEventListener, if you observe the element multiple times it does not make a difference. Meaning if you observe element twice, the observe callback does not fire twice, nor will you have to run disconnect() twice. In other words, once an element is observed, observing it again with the same observer instance will do nothing. However if the callback object is different it will of course add another observer to it.
disconnect()
Stops the MutationObserver
instance from receiving notifications of DOM mutations. Until the observe()
method is used again, observer's callback will not be invoked.
void disconnect();
takeRecords()
Empties the MutationObserver
instance's record queue and returns what was in there.
Array takeRecords();
Return value
Returns an Array of MutationRecord
s.
MutationObserverInit
MutationObserverInit
is an object which can specify the following properties:
NOTE: At the very least,
childList
, attributes
, or characterData
must be set to true
. Otherwise, "An invalid or illegal string was specified" error is thrown.Property | Description |
childList |
Set to true if additions and removals of the target node's child elements (including text nodes) are to be observed. |
attributes |
Set to true if mutations to target's attributes are to be observed. |
characterData |
Set to true if mutations to target's data are to be observed. |
subtree |
Set to true if mutations to target and target's descendants are to be observed. |
attributeOldValue |
Set to true if attributes is set to true and target's attribute value before the mutation needs to be recorded. |
characterDataOldValue |
Set to true if characterData is set to true and target's data before the mutation needs to be recorded. |
attributeFilter |
Set to an array of attribute local names (without namespace) if not all attribute mutations need to be observed. |
Example usage
The following example was taken from this blog post.
// select the target node var target = document.getElementById('some-id'); // create an observer instance var observer = new MutationObserver(function(mutations) { mutations.forEach(function(mutation) { console.log(mutation.type); }); }); // configuration of the observer: var config = { attributes: true, childList: true, characterData: true }; // pass in the target node, as well as the observer options observer.observe(target, config); // later, you can stop observing observer.disconnect();
Additional reading
- A brief overview
- A more in-depth discussion
- A screencast by Chromium developer Rafael Weinstein
- The mutation summary library
Specifications
Specification | Status | Comment |
---|---|---|
DOM The definition of 'MutationObserver' in that specification. |
Living Standard |
Browser compatibility
Document Tags and Contributors
Tags:
Contributors to this page:
DomenicDenicola,
RinkAttendant6,
aknudsen,
libbymc,
RyanNerd,
layonthebeech,
jwhitlock,
raeesiqbal,
DevelX,
cvrebert,
chrisdavidmills,
KMStanton,
lydell,
Sebastianz,
fscholz,
ShyykoSerhiy,
jdanyow,
Lagg,
NiGhTCrAwLeR,
mattlunn,
mikehenrty,
jcsmnt0,
Jeremie,
Noitidart,
kscarfone,
jtAssi,
myakura,
pseudosavant,
teoli,
Sheppy,
aklein,
rudiedirkx,
Rob W,
Victor_Homyakov,
ziyunfei,
Brettz9,
MDR,
aurimas,
kohei.yoshino,
codepanda,
kmaglione,
rpncreator,
Nickolay,
Canuckistani
Last updated by:
DomenicDenicola,