Reputation: 457
I already used jquery combobox autocomplete like on the demo below.
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
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
});
Upvotes: 1