Open In App

HTML | DOM Input Search size Property

Last Updated : 25 Aug, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

The DOM Input Search size Property in HTML DOM is used to set or return the value of the size attribute of an Input search Field. The size attribute is used to define the width of a search field. Its default value is 20.
 

Syntax:  

  • It returns the Input search size property. 
searchObject.size
  • It is used to set the Input search size property. 
searchObject.size = number

Property Values: It contains a single value number which is used to specify the width of a search field in terms of the number of characters.
Return Value: It returns the numeric value which represents the width of a search field in terms of the number of characters.
Example-1: This example illustrates how to return Input search size property.  

html




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


Output:
Before Clicking On Button: 
 

After Clicking On Button: 
 

Example-2: This Example that illustrate how to set the Input search size Property. 

html




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


Output: 
Before Clicking On Button: 
 

After Clicking On Button: 
 

Supported Browsers: The browser supported by DOM input search size 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


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

Similar Reads