Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

HTML | DOM Input Text type Property

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The Input Text type Property in HTML DOM is used to return the type of form element of the text field. It always returns the text for an Input text field.

Syntax: 

textObject.type

Return Value: It returns a string value that represents the type of form element the input text field is.

Below program illustrates the text type property in HTML DOM:
Example: This example returns the type of form element of the text field. 

HTML




<!DOCTYPE html>
<html>
<head>
    <title>
        HTML DOM Input Text type Property
    </title>
</head>
<body style="text-align:center;">
    <h1>GeeksForGeeks</h1>
    <h2>DOM Input Text type Property</h2>
    <input type="text" id="text_id" value="Hello Geeks!">
    <br><br>
    <button onclick="myGeeks()">
        Click Here!
    </button>
    <p id="GFG" style="font-size:20px;"></p>
 
     
    <!-- script to return the type Property-->
    <script>
        function myGeeks() {
            var txt = document.getElementById("text_id").type;
            document.getElementById("GFG").innerHTML = txt;
        }
    </script>
</body>
</html>

Output: 
Before Clicking the Button: 

After Clicking the Button: 

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

  • Google Chrome 1 and above
  • Edge 12 and above
  • Firefox 1 and above
  • Opera
  • Safari 1 and above
My Personal Notes arrow_drop_up
Last Updated : 17 Oct, 2022
Like Article
Save Article
Similar Reads
Related Tutorials