Autocomplete or Select box? (design problem)

Posted by Craig Whitley on Stack Overflow See other posts from Stack Overflow or by Craig Whitley
Published on 2010-04-02T12:32:24Z Indexed on 2010/04/02 12:33 UTC
Read the original article Hit count: 560

Filed under:
|
|
|

I'm working on a comparison website, so needless to say the search function is the primary feature of the site. I have two input text boxes and a search button. At the moment, the input text boxes use Ajax to query the database and show a drop-down box, but I'm wondering if it would be more intuitive to use a select box instead? The second box is dependant on the first, as when the first is selected theres another ajax query so only the available options for the first selection appear in the autocomplete box.

Autocomplete

Pros: - "Feels" right? - Looks more appealing than a select box (css design)?

Cons: - the user has to be instructed on how to use the search (made to think?) - Only really works off the bat with javascript enabled. - The user may get confused if they type in what they want and no box appears (i.e., no results)

Select Box

Pros: - Can bring up the list of options / know whats there from the outset. - We use select boxes every day (locations etc.) so we're used to how they work. (more intuitive?)

Cons: - Can look a little unaesthetic when theres too many options to choose from. I'm thinking maybe at most around 100 options for my site over time.

Any thoughts on how I could go about this would be appreciated!

© Stack Overflow or respective owner

Related posts about user

Related posts about interface