The DocumentFragment interface represents a minimal document
that has no parent. It is used as a lightweight version of web.Document
stores a segment of a document structure comprised of nodes just
a standard document. The key difference is that because the document
isn't part of the active document tree structure, changes made
the fragment don't affect the document, cause reflow, or incur
performance impact that can occur when changes are made.
The DocumentFragment interface represents a minimal document that has no parent. It is used as a lightweight version of `web.Document` stores a segment of a document structure comprised of nodes just a standard document. The key difference is that because the document isn't part of the active document tree structure, changes made the fragment don't affect the document, cause reflow, or incur performance impact that can occur when changes are made.
(append this & args)
Method.
The ParentNode.append() method inserts a set of web.Node
objects
web.dom.DOMString
objects after the last child of the ParentNode.
objects are inserted as equivalent web.Text
nodes.
[Throws, Unscopable] void ParentNode.append((Node or DOMString)... nodes);
See also: https://developer.mozilla.org/en-US/docs/Web/API/ParentNode/append
Method. The ParentNode.append() method inserts a set of `web.Node` objects `web.dom.DOMString` objects after the last child of the ParentNode. objects are inserted as equivalent `web.Text` nodes. `[Throws, Unscopable] void ParentNode.append((Node or DOMString)... nodes);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/ParentNode/append`
(child-element-count this)
Property.
[Read Only]
The ParentNode.childElementCount read-only property returns an long representing the number of child elements of the given element.
`var count = node.childElementCount;
count
The return value, which is an unsigned long (simply an integer) type.
node
An object representing a web.Document
, web.web-components.DocumentFragment
, or web.Element
.`
See also: https://developer.mozilla.org/en-US/docs/Web/API/ParentNode/childElementCount
Property. [Read Only] The ParentNode.childElementCount read-only property returns an long representing the number of child elements of the given element. `var count = node.childElementCount; count The return value, which is an unsigned long (simply an integer) type. node An object representing a `web.Document`, `web.web-components.DocumentFragment`, or `web.Element`.` See also: `https://developer.mozilla.org/en-US/docs/Web/API/ParentNode/childElementCount`
(children this)
Property.
[Read Only]
The web.ParentNode
property children is a read-only property
returns a live web.dom.HTMLCollection
which contains all of
child elements
of the node upon which it was called.
var children = node.children;
See also: https://developer.mozilla.org/en-US/docs/Web/API/ParentNode/children
Property. [Read Only] The `web.ParentNode` property children is a read-only property returns a live `web.dom.HTMLCollection` which contains all of child `elements` of the node upon which it was called. `var children = node.children;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/ParentNode/children`
(first-element-child this)
Property.
[Read Only]
The ParentNode.firstElementChild read-only property returns the
first child web.Element
, or null if there are no child elements.
var element = node.firstElementChild;
See also: https://developer.mozilla.org/en-US/docs/Web/API/ParentNode/firstElementChild
Property. [Read Only] The ParentNode.firstElementChild read-only property returns the first child `web.Element`, or null if there are no child elements. `var element = node.firstElementChild;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/ParentNode/firstElementChild`
(get-element-by-id this & args)
Method.
Returns the first Element node within the DocumentFragment, in order, that matches the specified ID.
Method. Returns the first Element node within the DocumentFragment, in order, that matches the specified ID.
(last-element-child this)
Property.
[Read Only]
The ParentNode.lastElementChild read-only property returns the
last child web.Element
or null if there are no child elements.
var element = node.lastElementChild;
See also: https://developer.mozilla.org/en-US/docs/Web/API/ParentNode/lastElementChild
Property. [Read Only] The ParentNode.lastElementChild read-only property returns the last child `web.Element` or null if there are no child elements. `var element = node.lastElementChild;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/ParentNode/lastElementChild`
(prepend this & args)
Method.
The ParentNode.prepend() method inserts a set of web.Node
objects
web.dom.DOMString
objects before the first child of the web.ParentNode
.
objects are inserted as equivalent web.Text
nodes.
ParentNode.prepend(...nodesToPrepend);
See also: https://developer.mozilla.org/en-US/docs/Web/API/ParentNode/prepend
Method. The ParentNode.prepend() method inserts a set of `web.Node` objects `web.dom.DOMString` objects before the first child of the `web.ParentNode`. objects are inserted as equivalent `web.Text` nodes. `ParentNode.prepend(...nodesToPrepend);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/ParentNode/prepend`
(query-selector this selectors)
Method.
The DocumentFragment.querySelector() method returns the first
or null if no matches are found, within the web.web-components.DocumentFragment
depth-first pre-order traversal of the document's nodes) that
the specified group of selectors.
element = documentfragment.querySelector(selectors);
See also: https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/querySelector
Method. The DocumentFragment.querySelector() method returns the first or null if no matches are found, within the `web.web-components.DocumentFragment` depth-first pre-order traversal of the document's nodes) that the specified group of selectors. `element = documentfragment.querySelector(selectors);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/querySelector`
(query-selector-all this selectors)
Method.
The DocumentFragment.querySelectorAll() method returns a web.NodeList
elements within the web.web-components.DocumentFragment
(using
pre-order traversal of the document's nodes) that matches the
group of selectors.
elementList = documentframgment.querySelectorAll(selectors);
See also: https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/querySelectorAll
Method. The DocumentFragment.querySelectorAll() method returns a `web.NodeList` elements within the `web.web-components.DocumentFragment` (using pre-order traversal of the document's nodes) that matches the group of selectors. `elementList = documentframgment.querySelectorAll(selectors);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/querySelectorAll`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close