Firefox Tomorrow

web api instance property

HTMLProgressElement: max property

View on MDN ↗

The max property of the HTMLProgressElement interface represents the upper bound of the <progress> element’s range.

Value

A floating point number that is greater than zero. The default value is 1.0.

Examples

HTML

Progress: <progress id="pBar"></progress> <span>0</span>%

JavaScript

const pBar = document.getElementById("pBar");
const span = document.getElementsByTagName("span")[0];

console.log(`Default value of max: ${pBar.max}`);

pBar.max = 100;
pBar.value = 0;

setInterval(() => {
  pBar.value = pBar.value < pBar.max ? pBar.value + 1 : 0;

  span.textContent = Math.trunc(pBar.position * 100);
}, 100);
Interactive exampleOpen the canonical MDN source to run this embedded demo.

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.