<DATALIST>
Tag Description
<datalist> defines a list of legal input values. New in HTML5.
Code Example
<input list="colours" />
<datalist id="colours">
<option value="black">
<option value="white">
<option value="grey">
</datalist>
Result
Browser Support
| Browser | Comment |
|---|---|
| Firefox | Yes |
| Safari | Yes |
| Chrome | Yes |
| Opera | Yes |
| IE | Yes |
Notes
- This element will not be displayed to the user
Useful Links
Title
details
