I am using the autocomplete plugin with jQuery and it is working fine. However, in IE, when the user selects an item in the autocomplete, the focus does not then move to the
The easiest way is to remove it from the tab index all together:
$('#control').find('input[readonly]').each(function () { $(this).attr('tabindex', '-1'); });
I already use this on a couple of forms.