MutationEvent

Module:
events
Inherits from:
Declared In:

Overview

Use the links in the table of contents to the left to access the documentation.



Functions

initMutationEvent

initMutationEvent


void initMutationEvent(
    in DOMString type, 
    in boolean canBubble, 
    in boolean cancelable, 
    in Node relatedNode, 
    in DOMString prevValue, 
    in DOMString newValue, 
    in DOMString attrName, 
    in unsigned short attrChange); 

Member Data

ADDITION
attrChange
attrName
MODIFICATION
newValue
prevValue
relatedNode
REMOVAL

ADDITION


const unsigned short ADDITION = 2; 


attrChange


readonly attribute unsigned short attrChange; 


attrName


readonly attribute DOMString attrName; 


MODIFICATION


const unsigned short MODIFICATION = 1; 


newValue


readonly attribute DOMString newValue; 


prevValue


readonly attribute DOMString prevValue; 


relatedNode


readonly attribute Node relatedNode; 


REMOVAL


const unsigned short REMOVAL = 3; 

 

Last Updated: 2009-05-29