How to Build Native HTML Autocomplete Search

How to Build Native HTML Autocomplete Search

Ferenc Almasi β€’ Last updated 2021 April 29 β€’ Read time 1 min read
  • twitter
  • facebook
HTML

To create a native autocomplete search in HTML, you can use the datalist tag with a set of options attached to an inputelement. For example:

Copied to clipboard! Playground
<label for="tech">Choose your tech:</label>
<input list="techlist" name="tech" id="tech" />

<datalist id="techlist">
    <option value="HTML">
    <option value="CSS">
    <option value="JS">
</datalist>
autocomplete.html

Note that the id of the datalist must match the list attribute on an input element.

You can try the behavior with the input below:

Currently, it has partial support on the latest versions of IE and Firefox, while other latest versions of major browsers are well supported.

Native Autocomplete Search in HTML
If you would like to see more Webtips, follow @flowforfrank

10 Best Practices for HTML

Resources:

  • twitter
  • facebook
HTML
Did you find this page helpful?
πŸ“š More Webtips
Frontend Course Dashboard
Master the Art of Frontend
  • check Access 100+ interactive lessons
  • check Unlimited access to hundreds of tutorials
  • check Prepare for technical interviews
Become a Pro

Courses

Recommended

This site uses cookies We use cookies to understand visitors and create a better experience for you. By clicking on "Accept", you accept its use. To find out more, please see our privacy policy.