HTML 5 <progress> Tag
Example
Mark up "Downloading in progress":
The object's downloading progress:
<progress>
<span id="objprogress">76</span>%
</progress> |
View it » |
Definition and Usage
The <progress> tag defines work-in-progress.
Use the progress element to
display the progress of a time consuming function in JavaScript.
Differences Between HTML 4.01 and HTML 5
The <progress> tag is new in HTML 5.
Tips and Notes
Tip: Use the <progress> element to display the progress of a
download.
Attributes
New : New in HTML 5.
Attribute |
Value |
Description |
maxNew |
number |
Defines the value of completion |
valueNew |
number |
Defines the current value of the progress |
Standard Attributes
The <a> tag also supports the Standard Attributes in HTML 5.
Event Attributes
The <a> tag also supports the Event Attributes
in HTML 5.
|