Open In App

HTML | DOM Progress position Property

Last Updated : 30 Jan, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

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:

  • Google Chrome
  • Internet Explorer 10.0
  • Firefox
  • Safari 6.0
  • Opera


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads