views:

15

answers:

0

I'm using jqueryui's autocomplete widget (ui v1.8.4) as a helping tool for a sitesearch. Without autocomplete the user types in his query, presses enter or search-button and get the results on result-page.

Autocomplete should work as addition while the user types. ... but if i type in a searchterm, i get the list from autocomplete. but now i have to choose one item of it instead of just hitting enter to get to the results page, as i have done without autocomplete.

$("#searchForm input").autocomplete({ source: "/suche", minLength: 3, delay: 100 });