HTMLProgressElement
The HTMLProgressElement
interface provides special properties and methods (beyond the regular HTMLElement
interface it also has available to it by inheritance) for manipulating the layout and presentation of <progress>
elements.
Properties
Inherits properties from its parent, HTMLElement
.
HTMLProgressElement.max
-
Is a
double
value reflecting the content attribute of the same name, limited to numbers greater than zero. Its default value is1.0
. -
HTMLProgressElement.position
Read only -
Returns a
double
value returning the result of dividing the current value (value
) by the maximum value (max
); if the progress bar is an indeterminate progress bar, it returns-1
. HTMLProgressElement.value
-
Is a
double
value that reflects the current value; if the progress bar is an indeterminate progress bar, it returns0
. -
HTMLProgressElement.labels
Read only -
Returns
NodeList
containing the list of<label>
elements that are labels for this element.
Methods
No specific method; inherits properties from its parent, HTMLElement
.
Specifications
Specification |
---|
HTML Standard (HTML) # htmlprogresselement |
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
HTMLProgressElement |
6 |
12 |
6 |
10 |
≤12.1 |
6 |
≤37 |
18 |
6 |
≤12.1 |
6 |
1.0 |
labels |
6 |
18 |
56 |
No |
≤12.1 |
6 |
≤37 |
18 |
56 |
≤12.1 |
6 |
1.0 |
max |
6 |
12 |
6 |
10 |
≤12.1 |
6 |
≤37 |
18 |
6 |
≤12.1 |
6 |
1.0 |
position |
6 |
12 |
6 |
10 |
≤12.1 |
6 |
≤37 |
18 |
6 |
≤12.1 |
6 |
1.0 |
value |
6 |
12 |
6 |
10 |
≤12.1 |
6 |
≤37 |
18 |
6 |
≤12.1 |
6 |
1.0 |
See also
- The HTML element implementing this interface:
<progress>
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/HTMLProgressElement