Open In App

HTML | DOM Progress position Property

The Progress position Property in HTML DOM is used to return the current position of the progress bar. The value of this property is the result of dividing the current value (specified with the value attribute) by the maximum value (specifies with the max attribute).

Syntax:



progressObject.position 

Return value: It returns a floating point number representing the current position of the progress bar.

Below example illustrates the progress position property in HTML DOM:



Example:




<!DOCTYPE html> 
<html
  
<head
    <title
        HTML DOM Progress position Property 
    </title
</head
      
<body
    <h1 style="color:green;"
        GeeksforGeeks 
    </h1
          
    <h2>
        DOM Progress position Property
    </h2
          
    Downloading progress for a song: 
    <progress id = "GFG" value = "57"
                max = "100"
    </progress
          
    <br><br
          
    <button onclick = "myGeeks()"
        Submit 
    </button
          
    <p id = "sudo"></p
          
    <script
        function myGeeks() { 
            var pr = document.getElementById(
                            "GFG").position; 
              
            document.getElementById("sudo")
                            .innerHTML = pr; 
        
    </script
</body
  
</html>

Output:

Supported Browsers: The browsers supported by HTML DOM progress position property are listed below:


Article Tags :