Created
March 22, 2018 15:34
-
-
Save vldvel/1a3b8a5f7d6b0ac62c58cbe5b38668e4 to your computer and use it in GitHub Desktop.
MutationObserver MutationRecord
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MutationRecord = { | |
addedNodes : [], // NodeList | |
attributeName : null, // attribute name - string or null | |
attributeNamespace : null, // attribute namespace | |
nextSibling : null, // next sibling in DOM | |
oldValue : null, // old value | |
previousSibling : null, // previous sibling in DOM | |
removedNodes : [], // NodeList of removed nodes | |
target : Element, // target element | |
type : "childList" // mutation type one of childList, attributes or characterData | |
} |
chuotidol
commented
Mar 22, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment