Skip to content

Instantly share code, notes, and snippets.

@vldvel
Created March 22, 2018 15:34
Show Gist options
  • Save vldvel/1a3b8a5f7d6b0ac62c58cbe5b38668e4 to your computer and use it in GitHub Desktop.
Save vldvel/1a3b8a5f7d6b0ac62c58cbe5b38668e4 to your computer and use it in GitHub Desktop.
MutationObserver MutationRecord
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
Copy link

28166291_581926175533301_4304951789929387634_n

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment