Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumHTMLdatalist outputSingle-choice MCQ

A text input is wired to a <datalist> via the list attribute. How does the browser treat the suggested options?

<input list="browsers" name="b"> <datalist id="browsers"> <option value="Chrome"> <option value="Firefox"> </datalist>