Open In App

HTML | DOM Input Search type Property

Improve
Improve
Like Article
Like
Save
Share
Report

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

Syntax: 

searchObject.type

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

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

html




<!DOCTYPE html>
<html>
 
<head>
    <title>
      Input Search type Property
  </title>
    <style>
        h1 {
            color: green;
        }
         
        h2 {
            font-family: Impact;
        }
         
        body {
            text-align: center;
        }
    </style>
</head>
 
<body>
 
    <h1>GeeksforGeeks</h1>
    <h2>Input Search type Property</h2>
    <form id="myGeeks">
        <input type="Search"
               id="test"
               placeholder="Type to search.."
               value="GeeksForGeeks">
    </form>
    <br>
    <br>
    <button ondblclick="Access()">
      click here
    </button>
 
    <p id="check"
       style="font-size:24px;
              color:green;">
  </p>
 
 
 
    <script>
        function Access() {
 
            // type="search"
            var s = document.getElementById(
                "test").type;
           
            document.getElementById(
                "check").innerHTML = s;
        }
    </script>
 
</body>
 
</html>


Output: 
Before Clicking On Button: 
 

After Clicking On Button: 
 

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

  • Google Chrome 5 and above
  • Edge 12 and above
  • Firefox 4 and above
  • Opera 10.6 and above
  • Safari 5 and above


Last Updated : 25 Aug, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads