MutationRecord Class

MutationRecord class

A MutationRecord represents an individual DOM mutation. It is the object that is passed to MutationObserver’s MutationCallback.

public class MutationRecord : DOMObject

Properties

NameDescription
AddedNodes { get; }Return the nodes added.
AttributeName { get; }Returns the local name of the changed attribute, and null otherwise.
AttributeNamespace { get; }Returns the namespace of the changed attribute, and null otherwise.
NextSibling { get; }Return the next sibling of the added or removed nodes, or null.
OldValue { get; }The return value depends on type. For “attributes”, it is the value of the changed attribute before the change. For “characterData”, it is the data of the changed node before the change. For “childList”, it is null.
PreviousSibling { get; }Returns the previous sibling of the added or removed nodes, or null.
RemovedNodes { get; }Return the nodes removed.
Target { get; }Returns the node the mutation affected, depending on the type. For “attributes”, it is the element whose attribute changed. For “characterData”, it is the CharacterData node. For “childList”, it is the node whose children changed.
Type { get; }Returns “attributes” if it was an attribute mutation, “characterData” if it was a mutation to a CharacterData node and “childList” if it was a mutation to the tree of nodes.

Methods

NameDescription
virtual GetPlatformType()This method is used to retrieve the ECMAScript object .

See Also