The DocumentFragment interface represents a minimal document object that has no parent. It is used as a light-weight version of Document to store well-formed or potentially non-well-formed fragments of XML.
Documentation DocumentFragment by Mozilla Contributors, licensed under CC-BY-SA 2.5.
See also:
Constructor
Variables
Methods
Returns the first Element node within the DocumentFragment`, in document order, that matches the specified ID.
Inherited Variables
Defined by Node
Returns a DOMString representing the base URL. The concept of base URL changes from one language to another; in HTML, it corresponds to the protocol, the domain name and the directory structure, that is all until the last '/'.
Returns a live NodeList containing all the children of this node. NodeList being live means that if the children of the Node change, the NodeList object is automatically updated.
Returns a Node representing the first direct child node of the node, or null if the node has no child.
Returns a Node representing the last direct child node of the node, or null if the node has no child.
Returns a DOMString representing the local part of the qualified name of an element.
Note: In Firefox 3.5 and earlier, the property upper-cases the local name for HTML elements (but not XHTML elements). In later versions, this does not happen, so the property is in lower case for both HTML and XHTML. 1.9.2
The namespace URI of this node, or null if it is no namespace.
Note: In Firefox 3.5 and earlier, HTML elements are in no namespace. In later versions, HTML elements are in the https://www.w3.org/1999/xhtml/ namespace in both HTML and XML trees. 1.9.2
Returns a Node representing the next node in the tree, or null if there isn't such node.
Returns a DOMString containing the name of the Node. The structure of the name will differ with the name type. E.g. An HTMLElement will contain the name of the corresponding tag, like 'audio' for an HTMLAudioElement, a Text node will have the '#text' string, or a Document node will have the '#document' string.
Returns an unsigned short representing the type of the node. Possible values are:
Name
Value
ELEMENT_NODE |
1 |
ATTRIBUTE_NODE (deprecated) |
2 |
TEXT_NODE |
3 |
CDATA_SECTION_NODE (deprecated) |
4 |
ENTITY_REFERENCE_NODE (deprecated) |
5 |
ENTITY_NODE (deprecated) |
6 |
PROCESSING_INSTRUCTION_NODE |
7 |
COMMENT_NODE |
8 |
DOCUMENT_NODE |
9 |
DOCUMENT_TYPE_NODE |
10 |
DOCUMENT_FRAGMENT_NODE |
11 |
NOTATION_NODE (deprecated) |
12 |
Returns / Sets the value of the current node
Returns the Document that this node belongs to. If no document is associated with it, returns null.
Returns an Element that is the parent of this node. If the node has no parent, or if that parent is not an Element, this property returns null.
Returns a Node that is the parent of this node. If there is no such node, like if this node is the top of the tree or if doesn't participate in a tree, this property returns null.
Is a DOMString representing the namespace prefix of the node, or null if no prefix is specified.
Returns a Node representing the previous node in the tree, or null if there isn't such node.
Returns / Sets the textual content of an element and all its descendants.
Inherited Methods
Defined by Node
Returns the context objects root which optionally includes the shadow root if it is available.
Returns the context objects root which optionally includes the shadow root if it is available.
Returns a Boolean indicating if the element has any child nodes, or not.
Returns a Boolean which indicates whether or not two nodes are of the same type and all their defining data points match.
Returns a Boolean which indicates whether or not two nodes are of the same type and all their defining data points match.
Clean up all the text nodes under this element (merge adjacent, remove empty).
Clean up all the text nodes under this element (merge adjacent, remove empty).
Clean up all the text nodes under this element (merge adjacent, remove empty).