I'm creating an autocomplete on a web page using jQuery's AutoComplete plugin.
Does anyone know how to make the list show, if for example, someone has entered 3 characters, then clicked out of the input box, but then goes back to it?
$("#details_business_trade").autocomplete({
source: resultsSplit,
autoFill: true,
mustMatch: true,
close: function() { $("#createProspect").validate().element("#details_business_trade"); },
mustMatch: true
});
This is my code so far...