Liking cljdoc? Tell your friends :D

web.dom.MutationObserverInit

The MutationObserverInit dictionary describes the configuration a mutation observer. As such, it's primarily used as the type the options parameter on the MutationObserver.observe() method.

The MutationObserverInit dictionary describes the configuration
a mutation observer. As such, it's primarily used as the type
the options parameter on the `MutationObserver.observe()` method.
raw docstring

attribute-filtercljs

(attribute-filter this)

Property.

The web.dom.MutationObserverInit dictionary's optional attributeFilter is an array of strings specifying the names of the attributes values are to be monitored for changes.

var options = { attributeFilter: [ \"list\", \"of\", \"attribute\", \"names\" ] }

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

Property.

The `web.dom.MutationObserverInit` dictionary's optional attributeFilter
is an array of strings specifying the names of the attributes
values are to be monitored for changes.

`var options = {
attributeFilter: [ \"list\", \"of\", \"attribute\", \"names\" ]
}`

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

attribute-old-valuecljs

(attribute-old-value this)

Property.

The web.dom.MutationObserverInit dictionary's optional attributeOldValue is used to specify whether or not to record the prior value of altered attribute in web.dom.MutationRecord objects denoting value changes.

var options = { attributeOldValue: true | false }

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

Property.

The `web.dom.MutationObserverInit` dictionary's optional attributeOldValue
is used to specify whether or not to record the prior value of
altered attribute in `web.dom.MutationRecord` objects denoting
value changes.

`var options = {
attributeOldValue: true | false
}`

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

attributescljs

(attributes this)

Property.

The web.dom.MutationObserverInit dictionary's optional attributes is used to specify whether or not to watch for attribute value on the node or nodes being observed.

var options = { attributes: true | false }

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

Property.

The `web.dom.MutationObserverInit` dictionary's optional attributes
is used to specify whether or not to watch for attribute value
on the node or nodes being observed.

`var options = {
attributes: true | false
}`

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

character-datacljs

(character-data this)

Property.

The web.dom.MutationObserverInit dictionary's optional characterData is used to specify whether or not to monitor the node or nodes observed for changes to their textual contents.

var options = { characterData: true | false }

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

Property.

The `web.dom.MutationObserverInit` dictionary's optional characterData
is used to specify whether or not to monitor the node or nodes
observed for changes to their textual contents.

`var options = {
characterData: true | false
}`

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

character-data-old-valuecljs

(character-data-old-value this)

Property.

The web.dom.MutationObserverInit dictionary's optional characterDataOldValue is used to specify whether or not the MutationRecord.oldValue for DOM mutations should be set to the previous value of text which changed.

var options = { characterDataOldValue: true | false }

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

Property.

The `web.dom.MutationObserverInit` dictionary's optional characterDataOldValue
is used to specify whether or not the `MutationRecord.oldValue`
for DOM mutations should be set to the previous value of text
which changed.

`var options = {
characterDataOldValue: true | false
}`

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

child-listcljs

(child-list this)

Property.

The web.dom.MutationObserverInit dictionary's optional childList indicates whether or not to monitor the specified node or nodes the addition or removal of new child nodes.

var options = { childList: true | false }

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

Property.

The `web.dom.MutationObserverInit` dictionary's optional childList
indicates whether or not to monitor the specified node or nodes
the addition or removal of new child nodes.

`var options = {
childList: true | false
}`

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

set-attribute-filter!cljs

(set-attribute-filter! this val)

Property.

The web.dom.MutationObserverInit dictionary's optional attributeFilter is an array of strings specifying the names of the attributes values are to be monitored for changes.

var options = { attributeFilter: [ \"list\", \"of\", \"attribute\", \"names\" ] }

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

Property.

The `web.dom.MutationObserverInit` dictionary's optional attributeFilter
is an array of strings specifying the names of the attributes
values are to be monitored for changes.

`var options = {
attributeFilter: [ \"list\", \"of\", \"attribute\", \"names\" ]
}`

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

set-attribute-old-value!cljs

(set-attribute-old-value! this val)

Property.

The web.dom.MutationObserverInit dictionary's optional attributeOldValue is used to specify whether or not to record the prior value of altered attribute in web.dom.MutationRecord objects denoting value changes.

var options = { attributeOldValue: true | false }

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

Property.

The `web.dom.MutationObserverInit` dictionary's optional attributeOldValue
is used to specify whether or not to record the prior value of
altered attribute in `web.dom.MutationRecord` objects denoting
value changes.

`var options = {
attributeOldValue: true | false
}`

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

set-attributes!cljs

(set-attributes! this val)

Property.

The web.dom.MutationObserverInit dictionary's optional attributes is used to specify whether or not to watch for attribute value on the node or nodes being observed.

var options = { attributes: true | false }

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

Property.

The `web.dom.MutationObserverInit` dictionary's optional attributes
is used to specify whether or not to watch for attribute value
on the node or nodes being observed.

`var options = {
attributes: true | false
}`

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

set-character-data!cljs

(set-character-data! this val)

Property.

The web.dom.MutationObserverInit dictionary's optional characterData is used to specify whether or not to monitor the node or nodes observed for changes to their textual contents.

var options = { characterData: true | false }

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

Property.

The `web.dom.MutationObserverInit` dictionary's optional characterData
is used to specify whether or not to monitor the node or nodes
observed for changes to their textual contents.

`var options = {
characterData: true | false
}`

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

set-character-data-old-value!cljs

(set-character-data-old-value! this val)

Property.

The web.dom.MutationObserverInit dictionary's optional characterDataOldValue is used to specify whether or not the MutationRecord.oldValue for DOM mutations should be set to the previous value of text which changed.

var options = { characterDataOldValue: true | false }

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

Property.

The `web.dom.MutationObserverInit` dictionary's optional characterDataOldValue
is used to specify whether or not the `MutationRecord.oldValue`
for DOM mutations should be set to the previous value of text
which changed.

`var options = {
characterDataOldValue: true | false
}`

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

set-child-list!cljs

(set-child-list! this val)

Property.

The web.dom.MutationObserverInit dictionary's optional childList indicates whether or not to monitor the specified node or nodes the addition or removal of new child nodes.

var options = { childList: true | false }

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

Property.

The `web.dom.MutationObserverInit` dictionary's optional childList
indicates whether or not to monitor the specified node or nodes
the addition or removal of new child nodes.

`var options = {
childList: true | false
}`

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

set-subtree!cljs

(set-subtree! this val)

Property.

The web.dom.MutationObserverInit dictionary's optional subtree can be set to true to monitor the targeted node and all of its

var options = { subtree: true | false }

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

Property.

The `web.dom.MutationObserverInit` dictionary's optional subtree
can be set to true to monitor the targeted node and all of its

`var options = {
subtree: true | false
}`

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

subtreecljs

(subtree this)

Property.

The web.dom.MutationObserverInit dictionary's optional subtree can be set to true to monitor the targeted node and all of its

var options = { subtree: true | false }

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

Property.

The `web.dom.MutationObserverInit` dictionary's optional subtree
can be set to true to monitor the targeted node and all of its

`var options = {
subtree: true | false
}`

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

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

× close