HTML < datalist > Tag - Learn About Website | DaddyFile

0

HTML <datalist> Tag

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="Chrome">
  <option value="Opera">
  <option value="Safari">
</datalist>

Definition and Usage

The <datalist> tag specifies a list of pre-defined options for an <input> element.
The <datalist> tag is used to provide an "autocomplete" feature on <input> elements. Users will see a drop-down list of pre-defined options as they input data.
Use the <input> element's list attribute to bind it together with a <datalist> element.

Differences Between HTML 4.01 and HTML5

The <datalist> tag is new in HTML5.

Post a Comment

 
Top