autocomplete trigger open on focus

Solutions on MaxInterview for autocomplete trigger open on focus by the best coders in the world

showing results for - "autocomplete trigger open on focus"
César
14 Mar 2020
1$( "#tags" ).autocomplete({
2        source: availableTags,
3        minLength:0
4    }).bind('focus', function(){ $(this).autocomplete("search"); } );