I'm using jQuery UI Autocomplete.

Is there a way to override its default search algorithm?

The changes I want to make are:

  • Prioritize words that start with the search term at the top of the suggested results.
  • Return a maximum of 5 results (instead of the default behavior, which is to return all matching results, potentially creating a really tall dropdown box).
link|improve this question

73% accept rate
feedback

1 Answer

Normally, it all should be done in back-end. Your server-side script defines in what order and how many results will be returned.

Alternatively (if back-end is not under your control), you can specify function as source attribute. In this function you can query back-end and process results in whatever way your want. E.g., here's an example
http://jqueryui.com/demos/autocomplete/#multiple-remote

link|improve this answer
The data is on the front end already, so I don't need to do anything with the back end. I just need to change the way the results are ordered. – Emmett Sep 12 '10 at 18:22
@Emmett Ok, I misunderstood it. According to the docs, your only option now is using function as source and doing comparisons/ordering manually. You can also use another (possibly more popular) autocomplete plugin which has option to limit number of results and many more: docs.jquery.com/Plugins/Autocomplete – Nikita Rybak Sep 12 '10 at 18:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.