Deprecated: This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see the compatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.
Non-standard: This feature is not standardized. We do not recommend using non-standard features in production, as they have limited browser support, and may change or be removed. However, they can be a suitable alternative in specific cases where no standard option exists.
The initMutationEvent()
method of the MutationEvent
interface initializes the value of a mutation event once it's been created (normally using the Document.createEvent()
method).
This method must be called to set the event before it is dispatched, using EventTarget.dispatchEvent()
.
Note: In general, you won't create these events yourself; they are created by the browser.
SyntaxinitMutationEvent(type, canBubble, cancelable, relatedNode,
prevValue, newValue, attrName, attrChange)
Parameters
type
A string to set the event's type
to. Browsers set the following values for MutationEvent
: DOMAttrModified
, DOMAttributeNameChanged
, DOMCharacterDataModified
, DOMElementNameChanged
, DOMNodeInserted
, DOMNodeInsertedIntoDocument
, DOMNodeRemoved
, DOMNodeRemovedFromDocument
, DOMSubtreeModified
.
canBubble
A boolean indicating whether or not the event can bubble. Sets the value of Event.bubbles
.
cancelable
A boolean indicating whether or not the event's default action can be prevented. Sets the value of Event.cancelable
.
A string representing the new value of the modified node, if any. Sets the value of MutationEvent.relatedNode
.
prevValue
A string representing the previous value of the modified node, if any. Sets the value of MutationEvent.prevValue
.
newValue
A string representing the new value of the modified node, if any. Sets the value of MutationEvent.newValue
.
attrName
A string representing the name of the Attr
node changed, if any. Sets the value of MutationEvent.attrName
.
attrChange
A integer representing the reason attribute node changed. Sets the value of MutationEvent.attrChange
.
None (undefined
).
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4