Liking cljdoc? Tell your friends :D

web.other.ParentNode

The ParentNode mixin contains methods and properties that are to all types of web.Node objects that can have children.

The ParentNode mixin contains methods and properties that are
to all types of `web.Node` objects that can have children.
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

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

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.

[Draft]

The web.other.ParentNode mixin defines the querySelector() as returning an web.Element representing the first element the specified group of selectors which are descendants of the on which the method was called.

element = parentNode.querySelector(selectors);

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

Method.

[Draft]

The `web.other.ParentNode` mixin defines the querySelector()
as returning an `web.Element` representing the first element
the specified group of selectors which are descendants of the
on which the method was called.

`element = parentNode.querySelector(selectors);`

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

query-selector-allcljs

(query-selector-all this selectors)

Method.

The web.other.ParentNode mixin defines the querySelectorAll() as returning a web.NodeList representing a list of elements the specified group of selectors which are descendants of the on which the method was called.

elementList = parentNode.querySelectorAll(selectors);

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

Method.

The `web.other.ParentNode` mixin defines the querySelectorAll()
as returning a `web.NodeList` representing a list of elements
the specified group of selectors which are descendants of the
on which the method was called.

`elementList = parentNode.querySelectorAll(selectors);`

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

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

× close