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
doublevalue reflecting the content attribute of the same name, limited to numbers greater than zero. Its default value is1.0. HTMLProgressElement.positionRead only- Returns a
doublevalue 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
doublevalue returning the current value; if the progress bar is an indeterminate progress bar, it returns0. HTMLProgressElement.labelsRead only- Returns
NodeListcontaining the list of<label>elements that are labels for this element.
Methods
No specific method; inherits properties from its parent, HTMLElement.
Specifications
| Specification | Status | Comment |
|---|---|---|
| WHATWG HTML Living Standard The definition of 'HTMLProgressElement' in that specification. |
Living Standard | No change from HTML5. |
| HTML5.1 The definition of 'HTMLProgressElement' in that specification. |
Working Draft | |
| HTML5 The definition of 'HTMLProgressElement' in that specification. |
Recommendation | Initial definition. |
Browser compatibility
| Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
|---|---|---|---|---|---|
| Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
| Feature | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|
| Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
See also
- The HTML element implementing this interface:
<progress>