I\'m using jQuery\'s autocomplete in a relatively simple way:
$(document).ready(function() { var data = [ {text: \"Choice 1\"}, {text: \"Ch
I could not get the $("#example").autocomplete( "search", "" ); part to work, only once I changed my search with a character that exists in my source it work. So I then used e.g. $("#example").autocomplete( "search", "a" );.
$("#example").autocomplete( "search", "" );
$("#example").autocomplete( "search", "a" );