lure.dom.node
Contents
DOM Node Object
Desc
DOM Node Properties
Property | Description | Implemented |
---|---|---|
childNodes | Returns a NodeList of child nodes for a node | Yes |
firstChild | Returns the first child of a node | No |
localName | Returns the local part of the name of a node | No |
nextSibling | Returns the node immediately following a node | No |
lastChild | Returns the last child of a node | No |
nodeName | Returns the name of a node, depending on its type | Yes |
nodeType | Returns the type of a node | Yes |
nodeValue | Sets or returns the value of a node, depending on its type | Partial |
ownerDocument | Returns the root element (document object) for a node | No |
parentNode | Returns the parent node of a node | Yes |
textContent | Sets or returns the textual content of a node and its descendants | No |
text | Returns the text of a node and its descendants. | No |
xml | Returns the XML of a node and its descendants. | No |
DOM Node Methods
DOM Node Inherited Properties
None
DOM Node Inherited Methods
None