| Parameter | Value |
|---|---|
| max | How much work the task requires in total |
| value | How much of the work has been accomplished already |
| position | This attribute returns the current position of the <progress> element |
| labels | This attribute returns a list of <progress> element labels (if any) |
The <progress> element is not supported in versions of Internet Explorer less than 10
The <progress> element is the wrong element to be used for something that is just a gauge, rather than the task progress. For example, showing the usage of disk space by using the <progress> element is inappropriate. Instead, the <meter> element is available for this type of use cases.