On 5/5/09 6:09 PM, "Mike Harris" <gfunk...@gmail.com> wrote:
> Does anyone know how I can get the autocomplete dropdown list of > values to appear when the text field gains focus, before the user > types anything. I've been trying to do this, and have so far been > unsuccessful. Any help would be greatly appreciated. let me know if this works: $(selector).focus(function(){ $(this).setOptions({minChars: 0}).trigger('click').trigger('click'); } where selector selects your text field.