Javascript DOM HTML Progress max Property get

Introduction

Get the maximum value of a progress bar:

Click the button to return the value of the max attribute of the progress bar.

View in separate window

<!DOCTYPE html>
<html>
<body>

Downloading progress:/*w  w  w. j  a  v  a  2 s .  c  o  m*/
<progress id="myProgress" value="22" max="100">
</progress>
<button onclick="myFunction()">Test</button>

<p id="demo"></p>

<script>
function myFunction() {
  var x = document.getElementById("myProgress").max;
  document.getElementById("demo").innerHTML = x;
}
</script>

</body>
</html>



PreviousNext

Related