datalist
Summary
The datalist element (<datalist>) represents a set of <option> elements that represent predefined options for other controls. It may be associated with an <input> element by adding a list attribute to the input element.
Overview Table
Examples
<input type="text" name="locations" list="places">
<datalist id="places">
<option>Amman, Jordan</option>
<option>New York, NY, USA</option>
<option>Paris, France</option>
<option>Vienna, Austria</option>
</datalist>
Related specifications
See also
Related articles
HTML
datalist
Attributions
Microsoft Developer Network: [Windows Internet Explorer API reference Article]