<html>
<body>
Downloading progress:
<progress id="myProgress" value="22" max="100">
</progress>
<p>Click the button to change the value of the max attribute of the progress bar to "50".</p>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction() {
document.getElementById("myProgress").max = "50";
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_progress_max by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 05 Sep 2022 15:53:10 GMT -->
</html>