Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Revision 1119203 of HTMLInputElement

  • Revision slug: Web/API/HTMLInputElement
  • Revision title: HTMLInputElement
  • Revision id: 1119203
  • Created:
  • Creator: Sheppy
  • Is current revision? No
  • Comment

Revision Content

{{ APIRef("HTML DOM") }}

Inheritance Hierarchy: 
{{domxref("Node")}}  <==  {{domxref("Element")}}  <==  {{domxref("HTMLElement")}}  <==  {{domxref("HTMLInputElement")}},

The HTMLInputElement interface provides special properties and methods for manipulating the layout and presentation of input elements.

{{InheritanceDiagram(600,120)}}

Properties

Properties related to the parent form
form {{domxref("HTMLFormElement")}}object:  Returns a reference to the parent form element.
formAction string: Returns / Sets the element's {{ htmlattrxref("formaction", "input") }} attribute, containing the URI of a program that processes information submitted by the element. This overrides the {{ htmlattrxref("action", "form") }} attribute of the parent form.
formEncType string: Returns / Sets the element's {{ htmlattrxref("formenctype", "input") }} attribute, containing the type of content that is used to submit the form to the server. This overrides the {{ htmlattrxref("enctype", "form") }} attribute of the parent form.
formMethod string: Returns / Sets the element's {{ htmlattrxref("formmethod", "input") }} attribute, containing the HTTP method that the browser uses to submit the form. This overrides the {{ htmlattrxref("method", "form") }} attribute of the parent form.
formNoValidate boolean: Returns / Sets the element's {{ htmlattrxref("formnovalidate", "input") }} attribute, indicating that the form is not to be validated when it is submitted. This overrides the {{ htmlattrxref("novalidate", "form") }} attribute of the parent form.
formTarget string: Returns / Sets the element's {{ htmlattrxref("formtarget", "input") }} attribute, containing a name or keyword indicating where to display the response that is received after submitting the form. This overrides the {{ htmlattrxref("target", "form") }} attribute of the parent form.
Properties that apply to any type of input element that is not hidden
name string: Returns / Sets the element's {{ htmlattrxref("name", "input") }} attribute, containing a name that identifies the element when submitting the form.
type string: Returns / Sets the element's {{ htmlattrxref("type", "input") }} attribute, indicating the type of control to display. See {{ htmlattrxref("type", "input") }} attribute of {{ HTMLElement("input") }} for possible values.
disabled boolean: Returns / Sets the element's {{ htmlattrxref("disabled", "input") }} attribute, indicating that the control is not available for interaction. The input values will not be submitted with the form. See also {{ htmlattrxref("readOnly", "input") }} 
autofocus boolean: Returns / Sets the element's {{ htmlattrxref("autofocus", "input") }} attribute, which specifies that a form control should have input focus when the page loads, unless the user overrides it, for example by typing in a different control. Only one form element in a document can have the {{htmlattrxref("autofocus","input")}} attribute. It cannot be applied if the {{htmlattrxref("type","input")}} attribute is set to hidden (that is, you cannot automatically set focus to a hidden control).
required boolean: Returns / Sets the element's {{ htmlattrxref("required", "input") }} attribute, indicating that the user must fill in a value before submitting a form.
value string: Returns / Sets the current value of the control.

Note: If the user enters a value differnt from the value expected, this may return an empty string.

validity {{readonlyInline}} {{domxref("ValidityState")}} object: Returns the validity state that this element is in.
validationMessage {{readonlyInline}} string: Returns a localized message that describes the validation constraints that the control does not satisfy (if any). This is the empty string if the control is not a candidate for constraint validation ({{htmlattrxref("willValidate","input")}} is false), or it satisfies its constraints.
willValidate {{jsxref("Boolean")}}: Indicates whether the element is a candidate for constraint validation. It is false if any conditions bar it from constraint validation.
Properties that apply only to elements of type "checkbox" or "radio"
checked")}}  boolean: Returns / Sets the current state of the element when {{htmlattrxref("type","input")}} is checkbox or radio.
defaultChecked")}} boolean: Returns / Sets the default state of a radio button or checkbox as originally specified in HTML that created this object.
indeterminate")}} boolean: indicates that the checkbox is neither on nor off.
Properties that apply only to elements of type "image"
alt string: Returns / Sets the element's {{ htmlattrxref("alt", "input") }} attribute, containing alternative text to use when {{htmlattrxref("type","input")}} is image.
height string: Returns / Sets the element's {{ htmlattrxref("height", "input") }} attribute, which defines the height of the image displayed for the button, if the value of {{htmlattrxref("type","input")}} is image.
src string: Returns / Sets the element's {{ htmlattrxref("src", "input") }} attribute, which specifies a URI for the location of an image to display on the graphical submit button, if the value of {{htmlattrxref("type","input")}} is image; otherwise it is ignored.
width string: Returns / Sets the document's {{ htmlattrxref("width", "input") }} attribute, which defines the width of the image displayed for the button, if the value of {{htmlattrxref("type","input")}} is image.
Properties that apply only to elements of type "file"
accept string: Returns / Sets the element's {{ htmlattrxref("accept", "input") }} attribute, containing comma-separated list of file types accepted by the server when {{htmlattrxref("type","input")}} is file.
Properties that apply only to text/number-containing or elements
autocomplete string: Returns / Sets the element's {{htmlattrxref("autocomplete", "input")}} attribute, indicating whether the value of the control can be automatically completed by the browser. Ignored if the value of the {{htmlattrxref("type","input")}} attribute is hidden, checkbox, radio, file, or a button type (button, submit, reset, image). Possible values are:
"on": the browser can autocomplete the value using previously stored value
"off": the user must explicity enter a value
maxLength long: Returns / Sets the element's {{ htmlattrxref("maxlength", "input") }} attribute, containing the maximum length of characters (in Unicode code points) that the value can have. (If you set this to a negative number, an exception will be thrown.)
size unsigned long: Returns / Sets the element's {{ htmlattrxref("size", "input") }} attribute, containing size of the control. This value is in pixels unless the value of {{htmlattrxref("type","input")}} is text or password, in which case, it is an integer number of characters. Applies only when {{htmlattrxref("type","input")}} is set to text, search, tel, url, email, or password; otherwise it is ignored.
pattern string: Returns / Sets the element's {{ htmlattrxref("pattern", "input") }} attribute, containing a regular expression that the control's value is checked against.  Use the {{htmlattrxref("title","input")}} attribute to describe the pattern to help the user. This attribute applies when the value of the {{htmlattrxref("type","input")}} attribute is text, search, tel, url or email; otherwise it is ignored.
placeholder string: Returns / Sets the element's {{ htmlattrxref("placeholder", "input") }} attribute, containing a hint to the user of what can be entered in the control. The placeholder text must not contain carriage returns or line-feeds. This attribute applies when the value of the {{htmlattrxref("type","input")}} attribute is text, search, tel, url or email; otherwise it is ignored.
readOnly boolean: Returns / Sets the element's {{ htmlattrxref("readonly", "input") }} attribute, indicating that the user cannot modify the value of the control.
{{HTMLVersionInline(5)}}This is ignored if the value of the {{htmlattrxref("type","input")}} attribute is hidden, range, color, checkbox, radio, file, or a button type.
min string: Returns / Sets the element's {{ htmlattrxref("min", "input") }} attribute, containing the minimum (numeric or date-time) value for this item, which must not be greater than its maximum ({{htmlattrxref("max","input")}} attribute) value.
max string: Returns / Sets the element's {{ htmlattrxref("max", "input") }} attribute, containing the maximum (numeric or date-time) value for this item, which must not be less than its minimum (min attribute) value.
selectionStart unsigned long: Returns / Sets the beginning index of the selected text. When nothing is selected, this is also the caret position inside of the {{HTMLElement("input")}} element.
selectionEnd unsigned long: Returns / Sets the end index of the selected text.
selectionDirection string: Returns / Sets the direction in which selection occurred. Possible values are:
"forward" if selection was performed in the start-to-end direction of the current locale,
"backward" for the opposite direction,
"none" if the direction is unknown."
Properties not yet categorized
defaultValue string: Returns / Sets the default value as originally specified in the HTML that created this object.
dirName string: Returns / Sets the directionality of the element.
accessKey string: Returns a string containing a single character that switches input focus to the control when pressed.
list {{readonlyInline}} {{domxref("HTMLElement")}} object: identifies a list of pre-defined options to suggest to the user. The value must be the id of a {{HTMLElement("datalist")}} element in the same document. The browser displays only options that are valid values for this input element. This attribute is ignored when the {{htmlattrxref("type","input")}} attribute's value is hidden, checkbox, radio, file, or a button type. The property may be null if no HTML element matches the criteria.
multiple boolean: Returns / Sets the element's {{ htmlattrxref("multiple", "input") }} attribute, indicating whether more than one value is possible (e.g., multiple files).
files {{readonlyInline}} {domxref("FileList")}} array: Returns the list of selected files.
labels {{readonlyInline}} {{domxref("NodeList")}} array: Returns a list of {{ HTMLElement("label") }} elements that are labels for this element.
step string: Returns / Sets the element's {{ htmlattrxref("step", "input") }} attribute, which works with {{htmlattrxref("min","input")}} and {{htmlattrxref("max","input")}} to limit the increments at which a numeric or date-time value can be set. It can be the string any or a positive floating point number. If this is not set to any, the control accepts only values at multiples of the step value greater than the minimum.
valueAsDate {{jsxref("Date")}} object: Returns / Sets the value of the element, interpreted as a date, or null if conversion is not possible.
valueAsNumber double: Returns the value of the element, interpreted as one of the following, in order:
  • a time value
  • a number
  • NaN if conversion is impossible
webkitDirectory boolean: Returns the {{htmlattrxref("webkitdirectory", "input")}} attribute, indicaing if the input selects only directories and should display a specific file picker if possible.
autocapitalize {{experimental_inline}} string: defines the capitalization behavior for user input. Valid values are none, off, characters, words, or sentences.

 

{{domxref("HTMLInputElement.align")}} {{obsolete_inline}}
string: represents the alignment of the element. Use CSS instead.
 
{{domxref("HTMLInputElement.useMap")}} {{ obsolete_inline }}
string: represents a client-side image map.

 

Methods

focus() Focus on the input element; keystrokes will subsequently go to this element.
blur() Removes focus from input; keystrokes will subsequently go nowhere.
select() Selects the input text in the element, and focuses it so the user can subsequently replace the whole entry.
click() Simulates a click on the element.
setSelectionRange() Selects a range of text in the element (but does not focus it). The optional selectionDirection parameter may be "forward" or "backward" to establish the direction in which selection was set, or "none" if the direction is unknown or not relevant. The default is "none". Specifying a selectionDirection parameter sets the value of the selectionDirection property.
setRangeText() Selects a range of text in the element (but does not focus it). The optional selectionDirection parameter may be "forward" or "backward" to establish the direction in which selection was set, or "none" if the direction is unknown or not relevant. The default is "none". Specifying a selectionDirection parameter sets the value of the selectionDirection property.
setCustomValidity() Sets a custom validity message for the element. If this message is not the empty string, then the element is suffering from a custom validity error, and does not validate.
checkValidity() Returns a {{jsxref("Boolean")}} that is false if the element is a candidate for constraint validation, and it does not satisfy its constraints. In this case, it also fires an {{event("invalid")}} event at the element. It returns true if the element is not a candidate for constraint validation, or if it satisfies its constraints.

 

The next 2 methods are incorrectly named. Can someone find what they should be and update the names?

 

{{domxref("HTMLInputElement.setRangeText()")}}
Decrements the {{htmlattrxref("value","input")}} by ({{htmlattrxref("step","input")}} * n), where n defaults to 1 if not specified. Throws an INVALID_STATE_ERR exception:
  • if the method is not applicable to for the current {{htmlattrxref("type","input")}} value,
  • if the element has no {{htmlattrxref("step","input")}} value,
  • if the {{htmlattrxref("value","input")}} cannot be converted to a number,
  • if the resulting value is above the {{htmlattrxref("max","input")}} or below the {{htmlattrxref("min","input")}}. 
{{domxref("HTMLInputElement.setRangeText()")}}
Increments the {{htmlattrxref("value","input")}} by ({{htmlattrxref("step","input")}} * n), where n defaults to 1 if not specified. Throws an INVALID_STATE_ERR exception:
  • if the method is not applicable to for the current {{htmlattrxref("type","input")}} value.,
  • if the element has no {{htmlattrxref("step","input")}} value,
  • if the {{htmlattrxref("value","input")}} cannot be converted to a number,
  • if the resulting value is above the {{htmlattrxref("max","input")}} or below the {{htmlattrxref("min","input")}}.
{{domxref("HTMLInputElement.mozSetFileArray()")}}{{non-standard_inline}}
Sets the files selected on the input to the given array of {{domxref("File")}} objects.  This is an alternative to mozSetFileNameArray which can be used in frame scripts: a chrome script can open files as File objects and send them via message manager.
{{domxref("HTMLInputElement.mozGetFileNameArray()")}}
Returns an array of all the file names from the input.
{{domxref("HTMLInputElement.mozSetFileNameArray()")}}
Sets the filenames for the files selected on the input.  Not for use in frame scripts, because it accesses the filesystem.
 

 

Specifications

Specification Status Comment
{{SpecName('HTML WHATWG', "tthe-input-element.html#the-input-element", "HTMLInputElement")}} {{Spec2('HTML WHATWG')}} No change from {{SpecName("HTML5 W3C")}}
{{SpecName('HTML5 W3C', "forms.html#the-input-element", "HTMLInputElement")}} {{Spec2('HTML5 W3C')}} Technically, the  tabindex and accesskey properties, as well as the blur(), click(), and focus() methods, are now defined on {{domxref("HTMLElement")}}.
The following properties are now obsolete: align and useMap.
The following properties have been added: autocomplete, autofocus, dirName, files, formAction, formEncType, formMethod, formNoValidate, formTarget, height, indeterminate, labels, list, max, min, multiple, pattern, placeholder, required, selectionDirection, selectionEnd, selectionStart, step, validationMessage, validity, valueAsDate, valueAsNumber, width, and willValidate.
The following methods have been added: checkValidity(), setCustomValidity(), setSelectionRange(), stepUp(), and stepDown().
{{SpecName('DOM2 HTML', 'html.html#ID-6043025', 'HTMLInputElement')}} {{Spec2('DOM2 HTML')}} The size property is now an unsigned long. The type property must be entirely given in lowercase characters.
{{SpecName('DOM1', 'level-one-html.html#ID-6043025', 'HTMLInputElement')}} {{Spec2('DOM1')}} Initial definition.

Browser compatibility

{{CompatibilityTable}}

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support {{CompatVersionUnknown}} {{CompatGeckoDesktop(1.0)}} {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatVersionUnknown}}
autocomplete & autofocus properties {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatVersionUnknown}}
files property {{CompatVersionUnknown}} {{CompatGeckoDesktop(1.9)}} 10 {{CompatUnknown}} {{CompatUnknown}}
multiple property {{CompatVersionUnknown}} {{CompatGeckoDesktop("1.9.2")}} {{CompatUnknown}} {{CompatUnknown}} {{CompatUnknown}}
indeterminate property {{CompatUnknown}} {{CompatVersionUnknown}} {{CompatUnknown}} {{CompatUnknown}} {{CompatUnknown}}
list property {{CompatUnknown}} {{CompatVersionUnknown}} {{CompatUnknown}} {{CompatUnknown}} {{CompatUnknown}}
formAction, formEncType, formMethod, formTarget properties {{CompatVersionUnknown}} {{CompatGeckoDesktop(2)}} {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatVersionUnknown}}
formNoValidate, validationMessage, validity, willValidate properties and setCustomValidity() and checkValidity() methods. {{CompatVersionUnknown}} {{CompatGeckoDesktop(2)}} 10 {{CompatVersionUnknown}} {{CompatVersionUnknown}}
pattern, placeholder, required properties {{CompatVersionUnknown}} {{CompatGeckoDesktop(2)}} {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatVersionUnknown}}
height and weight properties {{CompatVersionUnknown}} {{CompatGeckoDesktop(16)}} {{CompatUnknown}} {{CompatUnknown}} {{CompatUnknown}}
labels property {{CompatChrome(14.0)}} {{CompatNo}} ({{bug("556743")}}) {{CompatUnknown}} {{CompatUnknown}} {{CompatUnknown}}
min, max, and step for <input type="number"> {{CompatVersionUnknown}} Experimental, and without specific UI, since {{CompatGeckoDesktop(16)}}: behind the pref dom.experimental_forms {{CompatUnknown}} {{CompatUnknown}} {{CompatVersionUnknown}}
stepUp and stepDown methods {{CompatUnknown}} Experimental since {{CompatGeckoDesktop(16)}}: behind the pref dom.experimental_forms

There are still differences with the latest spec: {{bug(835773)}}
{{CompatUnknown}} {{CompatUnknown}} {{CompatUnknown}}
min, max, and step properties for <input type="range"> {{CompatVersionUnknown}} {{CompatGeckoDesktop(23)}} {{CompatUnknown}} {{CompatUnknown}} {{CompatVersionUnknown}}
min, max, and step properties for <input type="date"> {{CompatVersionUnknown}} Experimental, and without specific UI, since {{CompatGeckoDesktop(20)}}: behind the pref dom.experimental_forms {{CompatUnknown}} {{CompatUnknown}} {{CompatVersionUnknown}}
min, max, and step properties for other date-related type values {{CompatVersionUnknown}} {{CompatNo}} {{CompatUnknown}} {{CompatUnknown}} {{CompatVersionUnknown}}
mozGetFileNameArray() and mozSetFileNameArray() methods {{non-standard_inline}} {{CompatNo}} {{CompatGeckoDesktop("1.9.2")}} {{CompatNo}} {{CompatNo}} {{CompatNo}}
mozSetFileArray() method {{non-standard_inline}} {{CompatNo}} {{CompatGeckoDesktop("38")}} {{CompatNo}} {{CompatNo}} {{CompatNo}}
autocapitalize {{CompatChrome(43.0)}} {{CompatUnknown}} {{CompatUnknown}} {{CompatUnknown}} {{CompatUnknown}}
Feature Android Android Webview Firefox Mobile (Gecko) IE Phone Opera Mobile Safari Mobile Chrome for Android
Basic support {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatGeckoMobile(1.0)}} {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatVersionUnknown}}
autocapitalize {{CompatNo}} {{CompatChrome(43.0)}} {{CompatUnknown}} {{CompatUnknown}} {{CompatUnknown}} {{CompatUnknown}} {{CompatChrome(43.0)}}

See also

  • HTML element implementing this interface: {{ HTMLElement("input") }}.

Revision Source

<div>{{ APIRef("HTML DOM") }}
<div>
<div class="note">
<p><strong>Inheritance Hierarchy:</strong><em>&nbsp;<br />
 {{domxref("Node")}}&nbsp; &lt;==&nbsp; {{domxref("Element")}}&nbsp; &lt;==&nbsp; {{domxref("HTMLElement")}}&nbsp; &lt;==&nbsp; {{domxref("HTMLInputElement")}},</em></p>
</div>
</div>
</div>

<p>The <strong><code>HTMLInputElement</code></strong> interface provides special properties and methods for manipulating the layout and presentation of input elements.</p>

<p>{{InheritanceDiagram(600,120)}}</p>

<h2 id="Properties" name="Properties">Properties</h2>

<table class="standard-table">
 <caption>Properties related to the parent form</caption>
 <thead>
 </thead>
 <tbody>
  <tr>
   <td>form</td>
   <td><em><code>{{domxref("HTMLFormElement")}}object:</code></em>&nbsp; Returns a reference to the parent form element.</td>
  </tr>
  <tr>
   <td>formAction</td>
   <td><em><code>string</code>: </em>Returns / Sets the element's {{ htmlattrxref("formaction", "input") }} attribute, containing the URI&nbsp;of a program that processes information submitted by the element. This overrides the {{ htmlattrxref("action", "form") }} attribute of the parent form.</td>
  </tr>
  <tr>
   <td>formEncType</td>
   <td><em><code>string</code>:</em> Returns / Sets the element's {{ htmlattrxref("formenctype", "input") }} attribute, containing the type of content that is used to submit the form to the server. This overrides the {{ htmlattrxref("enctype", "form") }} attribute of the parent form.</td>
  </tr>
  <tr>
   <td>formMethod</td>
   <td><em><code>string</code>:</em> Returns / Sets the element's {{ htmlattrxref("formmethod", "input") }} attribute, containing the HTTP&nbsp;method that the browser uses to submit the form. This overrides the {{ htmlattrxref("method", "form") }} attribute of the parent form.</td>
  </tr>
  <tr>
   <td>formNoValidate</td>
   <td><em><code>boolean</code>:</em> Returns / Sets the element's {{ htmlattrxref("formnovalidate", "input") }} attribute, indicating that the form is not to be validated when it is submitted. This overrides the {{ htmlattrxref("novalidate", "form") }} attribute of the parent form.</td>
  </tr>
  <tr>
   <td>formTarget</td>
   <td><em><code>string</code>:</em> Returns / Sets the element's {{ htmlattrxref("formtarget", "input") }} attribute, containing a name or keyword indicating where to display the response that is received after submitting the form. This overrides the {{ htmlattrxref("target", "form") }} attribute of the parent form.</td>
  </tr>
 </tbody>
</table>

<table class="standard-table">
 <caption>Properties that apply to any type of input element that is not hidden</caption>
 <tbody>
  <tr>
   <td>name</td>
   <td><em><code>string</code>:</em> Returns / Sets the element's {{ htmlattrxref("name", "input") }} attribute, containing a name that identifies the element when submitting the form.</td>
  </tr>
  <tr>
   <td>type</td>
   <td><code><em>string:</em></code> Returns / Sets the element's {{ htmlattrxref("type", "input") }} attribute, indicating the type of control to display. See {{ htmlattrxref("type", "input") }} attribute of {{ HTMLElement("input") }} for possible values.</td>
  </tr>
  <tr>
   <td>disabled</td>
   <td><em><code>boolean</code>:</em> Returns / Sets the element's {{ htmlattrxref("disabled", "input") }} attribute, indicating that the control is not available for interaction. The input values will not be submitted with the form. See also&nbsp;{{ htmlattrxref("readOnly", "input") }}&nbsp;</td>
  </tr>
  <tr>
   <td>autofocus</td>
   <td><code><em>boolean:</em></code> Returns / Sets the element's {{ htmlattrxref("autofocus", "input") }} attribute, which specifies that a form control should have input focus when the page loads, unless the user overrides it, for example by typing in a different control. Only one form element in a document can have the {{htmlattrxref("autofocus","input")}} attribute. It cannot be applied if the {{htmlattrxref("type","input")}} attribute is set to <code>hidden</code> (that is, you cannot automatically set focus to a hidden control).</td>
  </tr>
  <tr>
   <td>required</td>
   <td><em><code>boolean</code>:</em> Returns / Sets the element's {{ htmlattrxref("required", "input") }} attribute, indicating that the user must fill in a value before submitting a form.</td>
  </tr>
  <tr>
   <td>value</td>
   <td><code><em>string:</em></code> Returns / Sets the current value of the control.
    <p class="note"><strong>Note:</strong> If the user enters a value differnt from the value expected, this may return an empty string.</p>
   </td>
  </tr>
  <tr>
   <td>validity {{readonlyInline}}</td>
   <td><code><em>{{domxref("ValidityState")}} object:</em></code> Returns the validity state that this element is in.</td>
  </tr>
  <tr>
   <td>validationMessage {{readonlyInline}}</td>
   <td><code><em>string:</em></code> Returns a localized message that describes the validation constraints that the control does not satisfy (if any). This is the empty string if the control is not a candidate for constraint validation ({{htmlattrxref("willValidate","input")}} is false), or it satisfies its constraints.</td>
  </tr>
  <tr>
   <td>willValidate</td>
   <td><em><code>{{jsxref("Boolean")}}:</code></em> Indicates whether the element is a candidate for constraint validation. It is false if any conditions bar it from constraint validation.</td>
  </tr>
 </tbody>
</table>

<table class="standard-table">
 <caption>Properties that apply only to elements of type "checkbox" or "radio"</caption>
 <tbody>
  <tr>
   <td>checked")}}</td>
   <td>&nbsp;<code><em>boolean:</em> </code>Returns / Sets the current state of the element when {{htmlattrxref("type","input")}} is <code>checkbox</code> or <code>radio</code>.</td>
  </tr>
  <tr>
   <td>defaultChecked")}}</td>
   <td><em><code>boolean:</code></em> Returns / Sets the default state of a radio button or checkbox as originally specified in HTML that created this object.</td>
  </tr>
  <tr>
   <td>indeterminate")}}</td>
   <td><code><em>boolean:</em></code> indicates that the checkbox is neither on nor off.</td>
  </tr>
 </tbody>
</table>

<table class="standard-table">
 <caption>Properties that apply only to elements of type "image"</caption>
 <tbody>
  <tr>
   <td>alt</td>
   <td><em><code>string</code>: </em>Returns / Sets the element's {{ htmlattrxref("alt", "input") }} attribute, containing alternative text to use when {{htmlattrxref("type","input")}} is <code>image.</code></td>
  </tr>
  <tr>
   <td>height</td>
   <td><em><code>string</code>: </em>Returns / Sets the element's {{ htmlattrxref("height", "input") }} attribute, which defines the height of the image displayed for the button, if the value of {{htmlattrxref("type","input")}} is <code>image</code>.</td>
  </tr>
  <tr>
   <td>src</td>
   <td><code><em>string:</em></code> Returns / Sets the element's {{ htmlattrxref("src", "input") }} attribute, which specifies a URI for the location of an image to display on the graphical submit button, if the value of {{htmlattrxref("type","input")}} is <code>image</code>; otherwise it is ignored.</td>
  </tr>
  <tr>
   <td>width</td>
   <td><code><em>string:</em></code> Returns / Sets the document's {{ htmlattrxref("width", "input") }} attribute, which defines the width of the image displayed for the button, if the value of {{htmlattrxref("type","input")}} is <code>image</code>.</td>
  </tr>
 </tbody>
</table>

<table class="standard-table">
 <caption>Properties that apply only to elements of type "file"</caption>
 <tbody>
  <tr>
   <td>accept</td>
   <td><em><code>string</code>: </em>Returns / Sets the element's {{ htmlattrxref("accept", "input") }} attribute, containing comma-separated list of file types accepted by the server when {{htmlattrxref("type","input")}} is <code>file</code>.</td>
  </tr>
 </tbody>
</table>

<table class="standard-table">
 <caption>Properties that apply only to text/number-containing or elements</caption>
 <tbody>
  <tr>
   <td>autocomplete</td>
   <td><em><code>string</code>: </em>Returns / Sets the element's {{htmlattrxref("autocomplete", "input")}} attribute, indicating whether the value of the control can be automatically completed by the browser. Ignored if the value of the {{htmlattrxref("type","input")}} attribute is <code>hidden</code>, <code>checkbox</code>, <code>radio</code>, <code>file</code>, or a button type (<code>button</code>, <code>submit</code>, <code>reset</code>, <code>image</code>). Possible values are:<br />
    "on": the browser can autocomplete the value using previously stored value<br />
    "off": the user must explicity enter a value</td>
  </tr>
  <tr>
   <td>maxLength</td>
   <td><em><code>long</code>:</em> Returns / Sets the element's {{ htmlattrxref("maxlength", "input") }} attribute, containing the <u><strong>maximum <strong>l</strong>ength of characters</strong></u> (in Unicode code points) that the value can have. (If you set this to a negative number, an exception will be thrown.)</td>
  </tr>
  <tr>
   <td>size</td>
   <td><em><code>unsigned long</code>:</em> Returns / Sets the element's {{ htmlattrxref("size", "input") }} attribute, containing <u><strong>size of the control</strong></u>. This value is in pixels unless the value of {{htmlattrxref("type","input")}} is <code>text</code> or <code>password</code>, in which case, it is an integer number of characters. Applies only when {{htmlattrxref("type","input")}} is set to <code>text</code>, <code>search</code>, <code>tel</code>, <code>url</code>, <code>email</code>, or <code>password</code>; otherwise it is ignored.</td>
  </tr>
  <tr>
   <td>pattern</td>
   <td><em><code>string</code>:</em> Returns / Sets the element's {{ htmlattrxref("pattern", "input") }} attribute, containing a <u><strong>regular expression</strong></u> that the control's value is checked against.&nbsp; Use the {{htmlattrxref("title","input")}} attribute to describe the pattern to help the user. This attribute applies when the value of the {{htmlattrxref("type","input")}} attribute is <code>text</code>, <code>search</code>, <code>tel</code>, <code>url</code> or <code>email</code>; otherwise it is ignored.</td>
  </tr>
  <tr>
   <td>placeholder</td>
   <td><em><code>string</code>: </em>Returns / Sets the element's {{ htmlattrxref("placeholder", "input") }} attribute, containing a hint to the user of what can be entered in the control. The placeholder text must not contain carriage returns or line-feeds. This attribute applies when the value of the {{htmlattrxref("type","input")}} attribute is <code>text</code>, <code>search</code>, <code>tel</code>, <code>url</code> or <code>email</code>; otherwise it is ignored.</td>
  </tr>
  <tr>
   <td>readOnly</td>
   <td><em><code>boolean</code>:</em> Returns / Sets the element's {{ htmlattrxref("readonly", "input") }} attribute, indicating that the user cannot modify the value of the control.<br />
    {{HTMLVersionInline(5)}}This is ignored if the value of the {{htmlattrxref("type","input")}} attribute is <code>hidden</code>, <code>range</code>, <code>color</code>, <code>checkbox</code>, <code>radio</code>, <code>file</code>, or a button type.</td>
  </tr>
  <tr>
   <td>min</td>
   <td><em><code>string</code>:</em> Returns / Sets the element's {{ htmlattrxref("min", "input") }} attribute, containing the minimum (numeric or date-time) value for this item, which must not be greater than its maximum ({{htmlattrxref("max","input")}} attribute) value.</td>
  </tr>
  <tr>
   <td>max</td>
   <td><em><code>string</code>:</em> Returns / Sets the element's {{ htmlattrxref("max", "input") }} attribute, containing the maximum (numeric or date-time) value for this item, which must not be less than its minimum (<strong>min</strong> attribute) value.</td>
  </tr>
  <tr>
   <td>selectionStart</td>
   <td><em><code>unsigned long</code>:</em> Returns / Sets the beginning index of the selected text. When nothing is selected, this is also the caret position inside of the {{HTMLElement("input")}} element.</td>
  </tr>
  <tr>
   <td>selectionEnd</td>
   <td><em><code>unsigned long</code>:</em> Returns / Sets the end index of the selected text.</td>
  </tr>
  <tr>
   <td>selectionDirection</td>
   <td><em><code>string</code>:</em> Returns / Sets the direction in which selection occurred. Possible values are:<br />
    <code>"forward"</code> if selection was performed in the start-to-end direction of the current locale,<br />
    <code>"backward"</code> for the opposite direction,<br />
    <code>"none"</code>&nbsp;if the direction is unknown."</td>
  </tr>
 </tbody>
</table>

<table class="standard-table">
 <caption>Properties not yet categorized</caption>
 <tbody>
  <tr>
   <td>defaultValue</td>
   <td><em><code>string:</code></em> Returns / Sets the default value as originally specified in the HTML that created this object.</td>
  </tr>
  <tr>
   <td>dirName</td>
   <td><em><code>string:</code></em> Returns / Sets the directionality of the element.</td>
  </tr>
  <tr>
   <td>accessKey</td>
   <td><em><code>string</code>: </em>Returns a string containing a single character that switches input focus to the control when pressed.</td>
  </tr>
  <tr>
   <td>list {{readonlyInline}}</td>
   <td><em><code>{{domxref("HTMLElement")}} object:</code></em> identifies a list of pre-defined options to suggest to the user. The value must be the <strong>id</strong> of a {{HTMLElement("datalist")}} element in the same document. The browser displays only options that are valid values for this input element. This attribute is ignored when the {{htmlattrxref("type","input")}} attribute's value is <code>hidden</code>, <code>checkbox</code>, <code>radio</code>, <code>file</code>, or a <code>button</code> type. The property may be <code>null</code> if no HTML element matches the criteria.</td>
  </tr>
  <tr>
   <td>multiple</td>
   <td><em><code>boolean</code>:</em> Returns / Sets the element's {{ htmlattrxref("multiple", "input") }} attribute, indicating whether more than one value is possible (e.g., multiple files).</td>
  </tr>
  <tr>
   <td>files {{readonlyInline}}</td>
   <td>{domxref("FileList")}} array: Returns the list of selected files.</td>
  </tr>
  <tr>
   <td>labels {{readonlyInline}}</td>
   <td><code><em>{{domxref("NodeList")}} array:</em></code> Returns a list of {{ HTMLElement("label") }} elements that are labels for this element.</td>
  </tr>
  <tr>
   <td>step</td>
   <td><code><em>string:</em></code> Returns / Sets the element's {{ htmlattrxref("step", "input") }} attribute, which works with<strong> </strong>{{htmlattrxref("min","input")}} and {{htmlattrxref("max","input")}} to limit the increments at which a numeric or date-time value can be set. It can be the string <code>any</code> or a positive floating point number. If this is not set to <code>any</code>, the control accepts only values at multiples of the step value greater than the minimum.</td>
  </tr>
  <tr>
   <td>valueAsDate</td>
   <td><code><em>{{jsxref("Date")}} object:</em></code> Returns / Sets the value of the element, interpreted as a date, or <code>null</code> if conversion is not possible.</td>
  </tr>
  <tr>
   <td>valueAsNumber</td>
   <td><code>double</code>: Returns the value of the element, interpreted as one of the following, in order:
    <ul>
     <li>a time value</li>
     <li>a number</li>
     <li>NaN if conversion is impossible</li>
    </ul>
   </td>
  </tr>
  <tr>
   <td>webkitDirectory</td>
   <td><code>boolean: </code>Returns the {{htmlattrxref("webkitdirectory", "input")}} attribute, indicaing if the input selects only directories and should display a specific file picker if possible.</td>
  </tr>
  <tr>
   <td>autocapitalize {{experimental_inline}}</td>
   <td><code><em>string:</em></code> defines the capitalization behavior for user input. Valid values are <code>none</code>, <code>off</code>, <code>characters</code>, <code>words</code>, or <code>sentences</code>.</td>
  </tr>
 </tbody>
</table>

<p>&nbsp;</p>

<dl>
 <dt>{{domxref("HTMLInputElement.align")}} {{obsolete_inline}}</dt>
 <dd><code><em>string:</em></code> represents the alignment of the element. <em>Use CSS instead.</em></dd>
 <dt>&nbsp;</dt>
 <dt>{{domxref("HTMLInputElement.useMap")}} {{ obsolete_inline }}</dt>
 <dd><code><em>string:</em></code> represents a client-side image map.</dd>
</dl>

<p>&nbsp;</p>

<h2 id="Methods">Methods</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <td>focus()</td>
   <td>Focus on the input element; keystrokes will subsequently go to this element.</td>
  </tr>
  <tr>
   <td>blur()</td>
   <td>Removes focus from input; keystrokes will subsequently go nowhere.</td>
  </tr>
  <tr>
   <td><a href="https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/select">select()</a></td>
   <td>Selects the input text in the element, and focuses it so the user can subsequently replace the whole entry.</td>
  </tr>
  <tr>
   <td><a href="https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/click">click()</a></td>
   <td>Simulates a click on the element.</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/API/HTMLInputElement/setSelectionRange">setSelectionRange()</a></td>
   <td>Selects a range of text in the element (but does not focus it). The optional selectionDirection parameter may be "forward" or "backward" to establish the direction in which selection was set, or "none" if the direction is unknown or not relevant. The default is "none". Specifying a selectionDirection parameter sets the value of the selectionDirection property.</td>
  </tr>
  <tr>
   <td>setRangeText()</td>
   <td>Selects a range of text in the element (but does not focus it). The optional selectionDirection parameter may be "forward" or "backward" to establish the direction in which selection was set, or "none" if the direction is unknown or not relevant. The default is "none". Specifying a selectionDirection parameter sets the value of the selectionDirection property.</td>
  </tr>
  <tr>
   <td>setCustomValidity()</td>
   <td>Sets a custom validity message for the element. If this message is not the empty string, then the element is suffering from a custom validity error, and does not validate.</td>
  </tr>
  <tr>
   <td>checkValidity()</td>
   <td>Returns a {{jsxref("Boolean")}} that is <code>false</code> if the element is a candidate for constraint validation, and it does not satisfy its constraints. In this case, it also fires an {{event("invalid")}} event at the element. It returns <code>true</code> if the element is not a candidate for constraint validation, or if it satisfies its constraints.</td>
  </tr>
 </tbody>
</table>

<p>&nbsp;</p>

<div class="warning">
<p>The next 2 methods are incorrectly named. Can someone find what they should be and update the names?</p>
</div>

<p>&nbsp;</p>

<dl>
 <dt>{{domxref("HTMLInputElement.setRangeText()")}}</dt>
 <dd>Decrements the {{htmlattrxref("value","input")}} by ({{htmlattrxref("step","input")}} * n), where n defaults to 1 if not specified. Throws an INVALID_STATE_ERR exception:
 <ul>
  <li>if the method is not applicable to for the current {{htmlattrxref("type","input")}} value,</li>
  <li>if the element has no {{htmlattrxref("step","input")}} value,</li>
  <li>if the {{htmlattrxref("value","input")}} cannot be converted to a number,</li>
  <li>if the resulting value is above the {{htmlattrxref("max","input")}} or below the {{htmlattrxref("min","input")}}.&nbsp;</li>
 </ul>
 </dd>
 <dt>{{domxref("HTMLInputElement.setRangeText()")}}</dt>
 <dd>Increments the {{htmlattrxref("value","input")}} by ({{htmlattrxref("step","input")}} * n), where n defaults to 1 if not specified. Throws an INVALID_STATE_ERR exception:
 <ul>
  <li>if the method is not applicable to for the current {{htmlattrxref("type","input")}} value.,</li>
  <li>if the element has no {{htmlattrxref("step","input")}} value,</li>
  <li>if the {{htmlattrxref("value","input")}} cannot be converted to a number,</li>
  <li>if the resulting value is above the {{htmlattrxref("max","input")}} or below the {{htmlattrxref("min","input")}}.</li>
 </ul>
 </dd>
 <dt>{{domxref("HTMLInputElement.mozSetFileArray()")}}{{non-standard_inline}}</dt>
 <dd>Sets the files selected on the input to the given array of {{domxref("File")}} objects.&nbsp; This is an alternative to mozSetFileNameArray which can be used in frame scripts: a chrome script can <a href="/en-US/docs/Extensions/Using_the_DOM_File_API_in_chrome_code">open files as File objects</a> and send them via <a href="/en-US/Firefox/Multiprocess_Firefox/The_message_manager">message manager</a>.</dd>
 <dt>{{domxref("HTMLInputElement.mozGetFileNameArray()")}}</dt>
 <dd>Returns an array of all the file names from the input.</dd>
 <dt>{{domxref("HTMLInputElement.mozSetFileNameArray()")}}</dt>
 <dd>Sets the filenames for the files selected on the input.&nbsp; Not for use in <a href="/en-US/Firefox/Multiprocess_Firefox/Limitations_of_frame_scripts">frame scripts</a>, because it accesses the filesystem.</dd>
 <dt>&nbsp;</dt>
 <dd>
 <ul>
 </ul>
 </dd>
</dl>

<p>&nbsp;</p>

<h2 id="Specifications">Specifications</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Specification</th>
   <th scope="col">Status</th>
   <th scope="col">Comment</th>
  </tr>
  <tr>
   <td>{{SpecName('HTML WHATWG', "tthe-input-element.html#the-input-element", "HTMLInputElement")}}</td>
   <td>{{Spec2('HTML WHATWG')}}</td>
   <td>No change from {{SpecName("HTML5 W3C")}}</td>
  </tr>
  <tr>
   <td>{{SpecName('HTML5 W3C', "forms.html#the-input-element", "HTMLInputElement")}}</td>
   <td>{{Spec2('HTML5 W3C')}}</td>
   <td>Technically, the&nbsp; tabindex and accesskey properties, as well as the blur(), click(), and focus() methods, are now defined on {{domxref("HTMLElement")}}.<br />
    The following properties are now obsolete: align and useMap.<br />
    The following properties have been added: autocomplete, autofocus, dirName, files, formAction, formEncType, formMethod, formNoValidate, formTarget, height, indeterminate, labels, list, max, min, multiple, pattern, placeholder, required, selectionDirection, selectionEnd, selectionStart, step, validationMessage, validity, valueAsDate, valueAsNumber, width, and willValidate.<br />
    The following methods have been added: checkValidity(), setCustomValidity(), setSelectionRange(), stepUp(), and stepDown().</td>
  </tr>
  <tr>
   <td>{{SpecName('DOM2 HTML', 'html.html#ID-6043025', 'HTMLInputElement')}}</td>
   <td>{{Spec2('DOM2 HTML')}}</td>
   <td>The size property is now an unsigned long. The type property must be entirely given in lowercase characters.</td>
  </tr>
  <tr>
   <td>{{SpecName('DOM1', 'level-one-html.html#ID-6043025', 'HTMLInputElement')}}</td>
   <td>{{Spec2('DOM1')}}</td>
   <td>Initial definition.</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility">Browser compatibility</h2>

<p>{{CompatibilityTable}}</p>

<div id="compat-desktop">
<table class="compat-table">
 <tbody>
  <tr>
   <th>Feature</th>
   <th>Chrome</th>
   <th>Firefox (Gecko)</th>
   <th>Internet Explorer</th>
   <th>Opera</th>
   <th>Safari (WebKit)</th>
  </tr>
  <tr>
   <td>Basic support</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatGeckoDesktop(1.0)}}</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
  </tr>
  <tr>
   <td>autocomplete &amp; autofocus properties</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
  </tr>
  <tr>
   <td>files property</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatGeckoDesktop(1.9)}}</td>
   <td>10</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
  </tr>
  <tr>
   <td>multiple property</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatGeckoDesktop("1.9.2")}}</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
  </tr>
  <tr>
   <td>indeterminate property</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
  </tr>
  <tr>
   <td>list property</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
  </tr>
  <tr>
   <td>formAction, formEncType, formMethod, formTarget properties</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatGeckoDesktop(2)}}</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
  </tr>
  <tr>
   <td>formNoValidate, validationMessage, validity, willValidate properties and setCustomValidity() and checkValidity() methods.</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatGeckoDesktop(2)}}</td>
   <td>10</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
  </tr>
  <tr>
   <td>pattern, placeholder, required properties</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatGeckoDesktop(2)}}</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
  </tr>
  <tr>
   <td>height and weight properties</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatGeckoDesktop(16)}}</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
  </tr>
  <tr>
   <td>labels property</td>
   <td>{{CompatChrome(14.0)}}</td>
   <td>{{CompatNo}} ({{bug("556743")}})</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
  </tr>
  <tr>
   <td>min, max, and step for &lt;input type="number"&gt;</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>Experimental, and without specific UI, since {{CompatGeckoDesktop(16)}}: behind the pref dom.experimental_forms</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
  </tr>
  <tr>
   <td>stepUp and stepDown methods</td>
   <td>{{CompatUnknown}}</td>
   <td>Experimental since {{CompatGeckoDesktop(16)}}: behind the pref dom.experimental_forms<br />
    <br />
    There are still differences with the latest spec: {{bug(835773)}}</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
  </tr>
  <tr>
   <td>min, max, and step properties for &lt;input type="range"&gt;</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatGeckoDesktop(23)}}</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
  </tr>
  <tr>
   <td>min, max, and step properties for &lt;input type="date"&gt;</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>Experimental, and without specific UI, since {{CompatGeckoDesktop(20)}}: behind the pref dom.experimental_forms</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
  </tr>
  <tr>
   <td>min, max, and step properties for other date-related type values</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
  </tr>
  <tr>
   <td>mozGetFileNameArray() and mozSetFileNameArray() methods {{non-standard_inline}}</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatGeckoDesktop("1.9.2")}}</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatNo}}</td>
  </tr>
  <tr>
   <td>mozSetFileArray() method {{non-standard_inline}}</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatGeckoDesktop("38")}}</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatNo}}</td>
  </tr>
  <tr>
   <td>autocapitalize</td>
   <td>{{CompatChrome(43.0)}}</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
  </tr>
 </tbody>
</table>
</div>

<div id="compat-mobile">
<table class="compat-table">
 <tbody>
  <tr>
   <th>Feature</th>
   <th>Android</th>
   <th>Android Webview</th>
   <th>Firefox Mobile (Gecko)</th>
   <th>IE Phone</th>
   <th>Opera Mobile</th>
   <th>Safari Mobile</th>
   <th>Chrome for Android</th>
  </tr>
  <tr>
   <td>Basic support</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatGeckoMobile(1.0)}}</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
  </tr>
  <tr>
   <td>autocapitalize</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatChrome(43.0)}}</td>
   <td>{{CompatUnknown}}</td>
   <td><span style="font-size:12px; line-height:16.3636360168457px">{{CompatUnknown}}</span></td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatChrome(43.0)}}</td>
  </tr>
 </tbody>
</table>
</div>

<h2 id="See_also">See also</h2>

<ul>
 <li>HTML element implementing this interface: {{ HTMLElement("input") }}.</li>
</ul>
Revert to this revision