🚨 Time is Running Out: Reserve Your Spot in the Lucky Draw & Claim Rewards! START NOW

Code has been added to clipboard!

HTML datalist Tag

Reading time 1 min
Published Mar 19, 2019
Updated Oct 1, 2019

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.
DataCamp
Pros
  • 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
Main Features
  • Free certificates of completion
  • Focused on data science skills
  • Flexible learning timetable
Udacity
Pros
  • Simplistic design (no unnecessary information)
  • High-quality courses (even the free ones)
  • Variety of features
Main Features
  • Nanodegree programs
  • Suitable for enterprises
  • Paid Certificates of completion
Udemy
Pros
  • Easy to navigate
  • No technical issues
  • Seems to care about its users
Main Features
  • Huge variety of courses
  • 30-day refund policy
  • Free 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

Browser image
Chrome
20+
Browser image
Edge
All
Browser image
Firefox
4+
Browser image
IE
10+
Browser image
Opera
9.5+
Browser image
Safari
12.1+

Mobile browser support

Browser image
Chrome
33+
Browser image
Firefox
4+
Browser image
Opera
-
Browser image
Safari
12.2+