autocomplete open list without keydown

Solutions on MaxInterview for autocomplete open list without keydown by the best coders in the world

showing results for - "autocomplete open list without keydown"
Pauline
01 Aug 2020
1$( "#tags" ).autocomplete({
2        source: availableTags,
3        minLength:0
4    }).bind('focus', function(){ $(this).autocomplete("search"); } );