guurnita
guurnita

Reputation: 457

Combobox autocomplete automatically choose the top item of sugesstion list when press enter

I already used jquery combobox autocomplete like on the demo below.

jquery combobox autocomplete

How to make jquery combobox autocomplete automaticly choose the top item of sugesstion when i press the enter button?

So user doesnt need to entered the full text.. thx.

Upvotes: 1

Views: 177

Answers (1)

Sender
Sender

Reputation: 6858

An extension for the autocomplete plugin that automatically selects the first item. Just set the selectFirst option to true:

$('#auto').autocomplete({
      selectFirst: true
});

Check This FIDDLE

http://github.com/scottgonzalez/jquery-ui-extensions/blob/master/autocomplete/jquery.ui.autocomplete.selectFirst.js

Upvotes: 1

Related Questions