Jonathan Romero Hernandez
Results
1
comments of
Jonathan Romero Hernandez
I have written a function for this problem, and I implemented in lookupFilter: `$('#country_value').autocomplete({ lookup: countries, lookupFilter: function (suggestion, originalQuery, queryLowerCase) { return suggestion.value.toLowerCase().indexOf(normalize(queryLowerCase)) !== -1; } });` Here the...