Вид этой строки в функции selectCurrent()
плагина:
$input.trigger("result", [selected.data, selected.value]);
... событие «результата» запускается на входе автозаполнения всякий раз, когда выбирается опция, мышью иликлавиатура.
Вы можете привязать к тому же событию и сделать акцент на следующем элементе управления в форме (я полагаю, это то, что вы хотите, а не просто удалить фокус из текущего элемента?):
$("input").bind("result", function () {
// Get all controls on the form
var controls = $(this).closest("form").find("input, textarea, select, button");
// Find the index of the next control
var nextIndex = controls.index(this) + 1;
// Check if this is already the last control, so wrap around to the first one
if (nextIndex >= controls.length) nextIndex = 0;
// Put focus on the "next" control
controls.eq(nextIndex).focus();
});