An <input> element with a maximum length of 10 characters:
The maxlength
attribute specifies the maximum number of characters allowed in the <input>
element.
The numbers in the table specify the first browser version that fully supports the attribute.
<input maxlength="number">
Value | Description |
---|---|
number | The maximum number of characters allowed in the <input> element. Default value is 524288 |
Example:
HTML
<form action="/action_page.php">
<label for="username">Username:</label>
<input type="text" id="username" name="username" maxlength="10"><br><br>
<input type="submit" value="Submit">
</form>
Type: | Html |
Category: | Web Tutorial |
Sub Category: | HTML Tag |
Uploaded by: | Admin |