Liking cljdoc? Tell your friends :D

web.Text

The Text interface represents the textual content of web.Element web.Attr. If an element has no markup within its content, it a single child implementing Text that contains the element's However, if the element contains markup, it is parsed into information and Text nodes that form its children.

The Text interface represents the textual content of `web.Element`
`web.Attr`. If an element has no markup within its content, it
a single child implementing Text that contains the element's
However, if the element contains markup, it is parsed into information
and Text nodes that form its children.
raw docstring

assigned-slotcljs

(assigned-slot this)

Property.

[Read Only] [Experimental]

The assignedSlot property of the web.Text interface returns web.shadow-dom.HTMLSlotElement object associated with the element.

var htmlSlotElement = text.assignedSlot

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

Property.

[Read Only]
[Experimental]

The assignedSlot property of the `web.Text` interface returns
`web.shadow-dom.HTMLSlotElement` object associated with the element.

`var htmlSlotElement = text.assignedSlot`

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

constructorcljs

(constructor & args)

Constructor.

The Text() constructor returns a newly created web.Text object with the optional web.DOMString given in parameter as its textual content.

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

Constructor.

The Text() constructor returns a newly created `web.Text` object with the optional `web.DOMString` given in parameter as its textual content.

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

is-element-content-whitespacecljs

(is-element-content-whitespace this)

Property.

[Read Only] [Obsolute]

The Text.isElementContentWhitespace read-only property returns js.Boolean flag indicating whether or not the text node's content solely of whitespace.

b = textnode.isElementContentWhitespace;

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

Property.

[Read Only]
[Obsolute]

The Text.isElementContentWhitespace read-only property returns
`js.Boolean` flag indicating whether or not the text node's content
solely of whitespace.

`b = textnode.isElementContentWhitespace;`

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

replace-whole-textcljs

(replace-whole-text this content)

Method.

[Obsolute]

The Text.replaceWholeText() method replaces the text of the node all of its logically adjacent text nodes with the specified text. replaced nodes are removed, including the current node, unless was the recipient of the replacement text.

replacementNode = textnode.replaceWholeText(content)

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

Method.

[Obsolute]

The Text.replaceWholeText() method replaces the text of the node
all of its logically adjacent text nodes with the specified text.
replaced nodes are removed, including the current node, unless
was the recipient of the replacement text.

`replacementNode = textnode.replaceWholeText(content)`

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

split-textcljs

(split-text this & args)

Method.

Breaks the node into two nodes at a specified offset.

Method.

Breaks the node into two nodes at a specified offset.
sourceraw docstring

whole-textcljs

(whole-text this)

Property.

[Read Only]

The Text.wholeText read-only property returns the full text of web.Text nodes logically adjacent to the node.

str = textnode.wholeText;

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

Property.

[Read Only]

The Text.wholeText read-only property returns the full text of
`web.Text` nodes logically adjacent to the node.

`str = textnode.wholeText;`

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

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

× close