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
Use eq to get to specific element.
Documentation about index
$("input").keyup(function () { var index = $(this).index("input"); $("input:eq(" + (index +1) + ")").focus(); });