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
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!