How to add dropdowns to textboxes in HTML5
https://helgesverre.com/blog/textbox-dropdown-html524.01.2015 · I recently had to add a dropdown box to a textbox at work, instead of jumping on the first jQuery plugin I could find, I instead started checking if this feature was finally added to "native html", and it was, and it is called a datalist. Simple Example A datalist in HTML5 is a simple way giving a (textbox) input field a dropdown of choices to select from, you bind a datalist and an …