I am trying to simulate the Youtube Autocomplete Search experience.
I can\'t find the option when the viewer clicks on a listed item and is automatically proceeded to se
Can't you just do something like:
$('.autocomplete ul li').live("click", function() { $("form#search").submit(); });
Where the click event on your option list triggers a form submit for your search form??