W3cubDocs

/DOM

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 is 1.0.
HTMLProgressElement.positionRead 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 returns 0.
HTMLProgressElement.labelsRead 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

Browser compatibilityUpdate compatibility data on GitHub

Desktop
Chrome Edge Firefox Internet Explorer Opera Safari
Basic support Yes Yes Yes Yes Yes Yes
max Yes Yes Yes Yes Yes Yes
position Yes Yes Yes Yes Yes Yes
value Yes Yes Yes Yes Yes Yes
labels Yes No 56 No Yes Yes
Mobile
Android webview Chrome for Android Edge Mobile Firefox for Android Opera for Android iOS Safari Samsung Internet
Basic support Yes Yes Yes Yes Yes Yes ?
max Yes Yes Yes Yes Yes Yes ?
position Yes Yes Yes Yes Yes Yes ?
value Yes Yes Yes Yes Yes Yes ?
labels Yes Yes No 56 ? ? ?

See also

  • The HTML element implementing this interface: <progress>

© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/HTMLProgressElement