[jQuery] [autocomplete] Pressing Enter On Non-Matched Substring When firstResult:false does not hide the Autocompletion List.

[jQuery] [autocomplete] Pressing Enter On Non-Matched Substring When firstResult:false does not hide the Autocompletion List.


Hi all.
My autocompletion code is:
$("#suggest").autocomplete(tags, {selectFirst: false, multiple: true,
multipleSeparator: ",",});
When I start typing in my text field, for instance Nou, the
autocompletion gives me Nouvelle, Nouveau... But what I want actually
is to search for "Nou". So I press enter, my search engine returns
some results, but the autocompletion list is still there, unless I
press "Esc". Isn't there any other option to disable/hide the
autocompletion list when Enter is pressed (out of the autocompletion
list, of course)?
Thanks a lot