Liking cljdoc? Tell your friends :D

web.dom.HTMLProgressElement

The HTMLProgressElement interface provides special properties methods (beyond the regular web.dom.HTMLElement interface it has available to it by inheritance) for manipulating the layout presentation of <progress> elements.

The HTMLProgressElement interface provides special properties
methods (beyond the regular `web.dom.HTMLElement` interface it
has available to it by inheritance) for manipulating the layout
presentation of `<progress>` elements.
raw docstring

labelscljs

(labels this)

Property.

[Read Only]

The HTMLProgressElement.labels read-only property returns a web.NodeList the <label> elements associated with the <progress> element.

var labelElements = progress.labels;

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

Property.

[Read Only]

The HTMLProgressElement.labels read-only property returns a `web.NodeList`
the `<label>` elements associated with the `<progress>` element.

`var labelElements = progress.labels;`

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

maxcljs

(max this)

Property.

Is a double value reflecting the content attribute of the same limited to numbers greater than zero. Its default value is 1.0.

Property.

Is a double value reflecting the content attribute of the same
limited to numbers greater than zero. Its default value is 1.0.
sourceraw docstring

positioncljs

(position this)

Property.

Returns a double value returning the result of dividing the current (value) by the maximum value (max); if the progress bar is an progress bar, it returns -1.

Property.

Returns a double value returning the result of dividing the current
(value) by the maximum value (max); if the progress bar is an
progress bar, it returns -1.
sourceraw docstring

set-max!cljs

(set-max! this val)

Property.

Is a double value reflecting the content attribute of the same limited to numbers greater than zero. Its default value is 1.0.

Property.

Is a double value reflecting the content attribute of the same
limited to numbers greater than zero. Its default value is 1.0.
sourceraw docstring

set-position!cljs

(set-position! this val)

Property.

Returns a double value returning the result of dividing the current (value) by the maximum value (max); if the progress bar is an progress bar, it returns -1.

Property.

Returns a double value returning the result of dividing the current
(value) by the maximum value (max); if the progress bar is an
progress bar, it returns -1.
sourceraw docstring

set-value!cljs

(set-value! this val)

Property.

Is a double value that reflects the current value; if the progress is an indeterminate progress bar, it returns 0.

Property.

Is a double value that reflects the current value; if the progress
is an indeterminate progress bar, it returns 0.
sourceraw docstring

valuecljs

(value this)

Property.

Is a double value that reflects the current value; if the progress is an indeterminate progress bar, it returns 0.

Property.

Is a double value that reflects the current value; if the progress
is an indeterminate progress bar, it returns 0.
sourceraw docstring

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

× close