web api interface
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.
Instance properties
Inherits properties from its parent, HTMLElement.
max- : A
doublevalue reflecting the content attribute of the same name, limited to numbers greater than zero. Its default value is1.0.
- : A
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.
- : Returns a
value- : A
doublevalue that reflects the current value; if the progress bar is an indeterminate progress bar, it returns0.
- : A
labelsRead only
Instance methods
No specific method; inherits methods from its parent, HTMLElement.
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.
See also
- The HTML element implementing this interface:
<progress>