Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript

jamesjones21
jamesjones21
9,260 Points

I'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?

Sounds like Select2

jamesjones21
jamesjones21
9,260 Points

Thanks deebird I will look at this, hopefully it's up to date :)

1 Answer

Steven Parker
Steven Parker
229,695 Points

What 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
jamesjones21
9,260 Points

I'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 :)