Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

jamesjones21
9,260 PointsI'm looking for a solution...
I'm looking to build a editable drop down box, which allows the user to select from the drop down list, or to type their own. Would anyone know of any good tutorials?

jamesjones21
9,260 PointsThanks deebird I will look at this, hopefully it's up to date :)
1 Answer

Steven Parker
220,378 PointsWhat you're describing is often called a combo box, and the HTML implementation involves pairing a text input with a datalist element, for example:
<input type="text" name="fruit" list="fruitlist">
<datalist id="fruitlist">
<option value="apple">
<option value="orange">
<option value="banana">
</datalist>
But note that support for it is not available (or complete) in all browsers.

jamesjones21
9,260 PointsI'll give it a look :) but if not I'll try js to create an array and have suggestions pop up when they enter something :)
deebird
7,558 Pointsdeebird
7,558 PointsSounds like Select2