I\'m using jQuery\'s autocomplete in a relatively simple way:
$(document).ready(function() { var data = [ {text: \"Choice 1\"}, {text: \"Ch
try this:
$('#autocomplete').focus(function(){ $(this).val(''); $(this).keydown(); });
and minLength set to 0
works every time :)