MutationEvent object
Provides event properties that are specific to modifications to the Document Object Model (DOM) hierarchy and nodes.
![]() ![]() |
DOM Information
Inheritance Hierarchy
Members
The MutationEvent object has these types of members:
Methods
The MutationEvent object has these methods.
| Method | Description |
|---|---|
| initEvent |
Initializes a new generic event that the createEvent method created. |
| initMutationEvent |
Initializes a new DOM mutation (modification) event that the createEvent method created. |
| preventDefault |
Cancels the default action of an event. |
| stopImmediatePropagation |
Prevents any further propagation of an event. |
| stopPropagation |
Prevents propagation of an event beyond the current target. |
Properties
The MutationEvent object has these properties.
| Property | Description |
|---|---|
|
Gets a value that indicates what type of change occurred. | |
|
Gets the name of the attribute that changed. | |
|
Gets a value that indicates whether an event propagates up from the event target. | |
|
Gets a value that indicates whether you can cancel an event's default action. | |
|
Gets or sets a value that indicates whether an event should be stopped from propagating up from the current target. | |
|
Gets the event target that is currently being processed. | |
|
Gets a value that indicates whether the default action should be canceled. | |
|
Gets the event phase that is being evaluated. | |
|
Gets a value that indicates whether a trusted event source created an event. | |
|
Gets the new value of the attribute or text node. | |
|
Gets the previous value of the attribute or text node. | |
|
Gets a second node related to a mutation event. | |
|
Gets the element that the event was originally dispatched to. Compare to target. | |
|
Gets the element that is the target of the event. | |
|
Gets the time, in milliseconds, when an event occurred. | |
|
Gets the name of an event. |
Standards information
- Document Object Model (DOM) Level 3 Events Specification, Section 5.2.8
Remarks
Mutation events occur when DOM nodes are inserted and removed, or when character data or attributes are modified. For more information, see initMutationEvent.
Send comments about this topic to Microsoft
Build date: 1/23/2013

