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.
(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`
(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.
(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.
(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.
(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.
(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.
(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.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close