DocumentFragment

EventTargetNodejs.html.DocumentFragment (extern class) → ShadowRoot

The DocumentFragment interface represents a minimal document object that has no parent. It is used as a lightweight version of Document that stores a segment of a document structure comprised of nodes just like a standard document. The key difference is that because the document fragment isn't part of the active document tree structure, changes made to the fragment don't affect the document, cause reflow, or incur any performance impact that can occur when changes are made.

Documentation DocumentFragment by Mozilla Contributors, licensed under CC-BY-SA 2.5.

See:

Instance Members

children: HTMLCollection

firstElementChild: Element

lastElementChild: Element

childElementCount: Int

getElementById(elementId: String): Element

Returns the first Element node within the DocumentFragment`, in document order, that matches the specified ID.

Name Type
elementId String
Returns
Element

querySelector(selectors: String): Element

Returns the first Element node within the DocumentFragment, in document order, that matches the specified selectors.

Name Type
selectors String
Returns
Element

querySelectorAll(selectors: String): NodeList

Returns a NodeList of all the Element nodes within the DocumentFragment that match the specified selectors.

Name Type
selectors String
Returns
NodeList

prepend(nodes: haxe.extern.Rest): Void
Name Type
nodes haxe.extern.Rest

append(nodes: haxe.extern.Rest): Void
Name Type
nodes haxe.extern.Rest

new(): Void