new $dom.Node()
Members
(static) CDATA_SECTION_NODE
(static) COMMENT_NODE
(static) DOCUMENT_FRAGMENT_NODE
(static) DOCUMENT_NODE
(static) DOCUMENT_TYPE_NODE
(static) ELEMENT_NODE
(static) PROCESSING_INSTRUCTION_NODE
(static) TEXT_NODE
beginIndex
Non-standard extension: The first index in the source of this node at parse time
childNodes
endIndex
Non-standard extension: The end index in the source of this node at parse time
firstChild
lastChild
lineNumber
Non-standard extension: The line number in the source of this node
nextSibling
nodeName
nodeType
nodeValue
ownerDocument
parentNode
previousSibling
textContent
Methods
appendChild(newNode)
Parameters:
Name | Type | Description |
---|---|---|
newNode | $dom. | DOM node to append |
insertBefore(newNode, referenceNode)
Parameters:
Name | Type | Description |
---|---|---|
newNode | $dom. | DOM node to append |
referenceNode | $dom. | The node before which newNode is inserted |
remove()
removes the object from the tree it belongs to.
removeChild(childNode)
removes a child node from the DOM and returns the removed node
Parameters:
Name | Type | Description |
---|---|---|
childNode | $dom. | DOM node to remove |