Element |
Name | Description |
---|---|
ownerDocument (get) | Returns reference to the owner document object. |
parentNode (get) | Returns the parent node (for nodes that can have parents). |
text (get) | Returns the string representing the text contents of this node. |
text (let) | Sets the text contents of this node. |
Name | Description |
---|---|
appendChild | Appends newChild as the last child of this node. |
getAttribute | Retrieves the value of the named attribute. |
removeChild | Removes the specified child node from the list of children and returns it. |
selectNodes | Applies the specified pattern-matching operation to this node's context and returns the list of matching nodes. |
selectSingleNode | Applies the specified pattern to this node's context and returns the first matching node. |
setAttribute | Sets the value of the named attribute. |