Open In App

HTML | DOM Input Number type Property

Last Updated : 17 Oct, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

The DOM Input Number type Property in HTML DOM is used to return the type of form element of the number field. It always returns the “number” for an Input number field.

Syntax: 

numberObject.type

Return Values: It returns a string value which represents the type of form element of the Number field

The below program illustrates the number type property in HTML DOM:
Example: This example returns the type of form element of the number field. 

HTML




<!DOCTYPE html>
<html>
<body style="text-align:center;">
    <h1 style="color:green;">
        GeeksForGeeks
    </h1>
    <h2>DOM Input Number type Property</h2>
    <input type="number" id="myNumber" value="10">
    <br><br>
    <button onclick="myFunction()">
        Click Here!
    </button>
    <p id="demo" style="font-size:23px;color:green;"></p>
 
 
    <script>
        function myFunction() {
 
            // Return Input Number type Property
            var x =
                document.getElementById("myNumber").type;
            document.getElementById("demo").innerHTML = x;
        }
    </script>
</body>
</html>


Output:
Before Clicking On Button: 

After Clicking On Button: 

Supported Browsers: The browser supported by DOM input number type Property are listed below: 

  • Google Chrome
  • Edge 12 and above
  • Firefox
  • Opera
  • Safari

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

Similar Reads