HTML DOM Input Text size Property
THE WORLD'S LARGEST WEB DEVELOPER SITE

Input Text size Property

❮ Input Text Object

Example

Set the width of a text field:

document.getElementById("myText").size = "50";
Try it Yourself »

Definition and Usage

The size property sets or returns the value of the size attribute of a text field.

The size attribute specifies the width of a text field (in number of characters).

The default value is 20.

Tip: To set or return the maximum number of characters allowed in the password field, use the maxLength property.


Browser Support

Property
size Yes Yes Yes Yes Yes

Syntax

Return the size property:

textObject.size

Set the size property:

textObject.size = number

Property Values

Value Description
number Specifies the width of the text field, in characters. Default value is 20

Technical Details

Return Value: A Number, representing the width of the text field, in number of characters

More Examples

Example

Get the width of a text field:

var x = document.getElementById("myText").size;
Try it Yourself »

Related Pages

HTML reference: HTML <input> size attribute


❮ Input Text Object