Liking cljdoc? Tell your friends :D

web.DocumentFragment

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.
raw docstring

appendcljs

(append this & args)

Method.

The ParentNode.append() method inserts a set of web.Node objects web.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.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`
sourceraw docstring

child-element-countcljs

(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.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.DocumentFragment`, or `web.Element`.`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/ParentNode/childElementCount`
sourceraw docstring

childrencljs

(children this)

Property.

[Read Only]

The web.other.ParentNode property children is a read-only property returns a live web.HTMLCollection which contains all of the 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.other.ParentNode` property children is a read-only property
returns a live `web.HTMLCollection` which contains all of the
`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`
sourceraw docstring

constructorcljs

(constructor & args)

Constructor.

The DocumentFragment() constructor returns a new, empty web.DocumentFragment object .

See also: https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/DocumentFragment

Constructor.

The DocumentFragment() constructor returns a new, empty `web.DocumentFragment` object .

See also: `https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/DocumentFragment`
sourceraw docstring

first-element-childcljs

(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`
sourceraw docstring

get-element-by-idcljs

(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.
sourceraw docstring

last-element-childcljs

(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`
sourceraw docstring

prependcljs

(prepend this & args)

Method.

The ParentNode.prepend() method inserts a set of web.Node objects web.DOMString objects before the first child of the web.other.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.DOMString` objects before the first child of the `web.other.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`
sourceraw docstring

query-selectorcljs

(query-selector this selectors)

Method.

The DocumentFragment.querySelector() method returns the first or null if no matches are found, within the web.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.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`
sourceraw docstring

query-selector-allcljs

(query-selector-all this selectors)

Method.

The DocumentFragment.querySelectorAll() method returns a web.NodeList elements within the web.DocumentFragment (using depth-first traversal of the document's nodes) that matches the specified 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.DocumentFragment` (using depth-first
traversal of the document's nodes) that matches the specified
of selectors.

`elementList = documentframgment.querySelectorAll(selectors);`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment/querySelectorAll`
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close