HTML <input> list Attribute
Example
An <input> element with pre-defined values in a <datalist>:
<input list="browsers">
<datalist id="browsers">
<option value="Internet Explorer">
<option value="Firefox">
<option value="Google Chrome">
<option value="Opera">
<option value="Safari">
</datalist>
Try it Yourself »
Definition and Usage
The list
attribute refers to a
<datalist>
element that contains pre-defined options for an
<input>
element.
Browser Support
The numbers in the table specify the first browser version that fully supports the attribute.
Attribute | |||||
---|---|---|---|---|---|
list | 20.0 | 10.0 | 4.0 | 12.1 | 9.6 |
Syntax
<input list="datalist_id">
Attribute Values
Value | Description |
---|---|
datalist_id | Specifies the id of the datalist to bind the <input> element to |
❮ HTML <input> tag
Copyright 1999-2023 by Refsnes Data. All Rights Reserved.