MutationObserver reference
14 April 2024 (Updated 14 April 2024)
On this page
Main purpose
The MutationObserver
API lets you watch for changes to the DOM tree and invoke callbacks. Example use cases include:
- Run code when any DOM node is added
- Run code when a DOM node with a specific selector is added
- Run code when the class attribute of a DOM node is updated.
Example usage: Listen for DOM nodes being added
1. Define callback to be executed on mutations
This callback function will be executed whenever the specific mutations (configured later) are detected.
mutations
in the above example is an array of MutationRecord
objects. See the API for more details but the key information available is:
MutationRecord.type
: A string representing the type of the mutation:attributes
: An attribute was mutated.childList
: The tree of nodes was mutated (e.g., because a node was added or removed).characterData
: ACharacterData
node was mutated.
MutationRecord.target
: The node theMutationRecord
affected, depending on theMutationRecord.type
:- For
attributes
, it is the element whose attribute changed. - For
characterData
, it is theCharacterData
node. - For
childList
, it is the node whose children changed.
- For
2. Create MutationObserver
instance
3. Configure the observer
Specify the types of mutations you want to observe
4. Start observing the target node for configured mutations
5. Stop observing if no longer needed (e.g., when a React component unmounts) (Optional)
Links
Tagged:
Web APIs
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment