devbridge / jQuery-Autocomplete

Ajax Autocomplete for jQuery allows you to easily create autocomplete/autosuggest boxes for text input fields
https://www.devbridge.com/sourcery/components/jquery-autocomplete/
Other
3.57k stars 1.67k forks source link

All Suggestions on Click #821

Open francoisdutoit opened 3 years ago

francoisdutoit commented 3 years ago

Hi,

Is it possible to fire all suggestions on click - so as soon as the user clicks inside the textbox,

I have tried minChars: 0 - but that only works for keypress events once the textbox already has focus.

Also tried the below - but does not work...

 var e = jQuery.Event('keydown', { which: $.ui.keyCode.ENTER });
 $('#Origin').trigger(e);

Thanks in advance :)

koto4 commented 9 months ago

I also have the same issue, would love to be able to do that.