Open In App

HTML | DOM Input Text size Property

Improve
Improve
Like Article
Like
Save
Share
Report

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

Syntax: 

  • It returns the Input Text size property.
textObject.size
  • It is used to set the Input Text size property.
textObject.size = number

Property Values: It contains a single value number which is used to specify the width of an text field in terms of the number of characters. 

Return Value: It returns the numeric value which represents the width of the text field in terms of the number of characters.

Example 1: This example illustrates how to return Input text size property. 

HTML




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


Output: 

Before Clicking On Button:

  

After Clicking On Button:

  

Example 2: This Example illustrates how to set the Property. 

HTML




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


Output: 

Before Clicking the Button:

  

After Clicking the Button: 

Supported Browsers: The browser supported by DOM Input Text size Property are listed below:

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


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