I\'m using the jQueryUI autocomplete() function and I can\'t figure out how to have my form submit when an item is selected.
autocomplete()
I think the issue is with t
Yeah Alice is also right. You just need to add this line in your onclick function:
$('#search_form').submit();
where search_form is the id of your form.