jQuery-Autocomplete
jQuery-Autocomplete copied to clipboard
All Suggestions on Click
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 :)
I also have the same issue, would love to be able to do that.