HTML datalist: Main Tips
- The HTML
<datalist>
element generates a drop-down menu with predefined options for users to select. - This element sets the options for the <input> element.
- The
<datalist>
adds the HTML autocomplete feature to the form.

Pros Main Features
- Easy to use with a learn-by-doing approach
- Offers quality content
- Gamified in-browser coding experience
- The price matches the quality
- Suitable for learners ranging from beginner to advanced
- Free certificates of completion
- Focused on data science skills
- Flexible learning timetable

Pros Main Features
- Simplistic design (no unnecessary information)
- High-quality courses (even the free ones)
- Variety of features
- Nanodegree programs
- Suitable for enterprises
- Paid Certificates of completion

Pros Main Features
- A wide range of learning programs
- University-level courses
- Easy to navigate
- Verified certificates
- Free learning track available
- University-level courses
- Suitable for enterprises
- Verified certificates of completion
Use of datalist
The <datalist>
tag specifies an HTML autocomplete feature to be used with a form element. An alternative element is <select>.
Example
<input list="books">
<datalist id="books">
<option value="Fiction">
<option value="Non-Fiction">
</datalist>
However, the discussion of <datalist>
vs <select>
should mention that the <select>
requires users to choose from the indicated options. The <datalist>
allows users to either choose from the specified answers, or to type in their original ones.
Browser support

Chrome
20+

Edge
All

Firefox
4+

IE
10+

Opera
9.5+

Safari
12.1+
Mobile browser support

Chrome
33+

Firefox
4+

Opera
-

Safari
12.2+