Dofactory.com
Dofactory.com
Earn income with your HTML skills
Sign up and we'll send you the best freelance opportunities straight to your inbox.
We're building the largest freelancing marketplace for people like you.
By adding your name & email you agree to our terms, privacy and cookie policies.

HTML <input> maxlength Attribute

The maxlength attribute on an <input> tag specifies the maximum number of characters that can be entered in the input field.

Default is 524,288 characters.

Example

#

A maxlength attribute on an <input> element.
The maxlength specified the number of characters allowed in this text input.



<form action="/tutorial/action.html">
  <label for="title">Title &nbsp;</label>
  <input type="text" id="title" name="title" 
         maxlength="15"><br /><br />

  <input type="submit">
</form>

Using maxlength

The maxlength attribute specifies the maximum number of characters that can be entered in the input field.

By default, the maximum is 524,288 characters.


Syntax

<input maxlength="number">

Values

#

Value Description
number The maximum number of characters.

Browser support

Here is when maxlength support started for each browser:

Chrome
1.0 Sep 2008
Firefox
1.0 Sep 2002
IE/Edge
1.0 Aug 1995
Opera
1.0 Jan 2006
Safari
1.0 Jan 2003

You may also like

 Back to <input>

Last updated on Sep 30, 2023

Earn income with your HTML skills
Sign up and we'll send you the best freelance opportunities straight to your inbox.
We're building the largest freelancing marketplace for people like you.
By adding your name & email you agree to our terms, privacy and cookie policies.

Guides