diff --git a/js/improvedDropDown.js b/js/improvedDropDown.js index a39c120230f273c816a93ea7a6f135fd1941f87f..de597252af5cc04969af489d6132647d947829f4 100755 --- a/js/improvedDropDown.js +++ b/js/improvedDropDown.js @@ -375,7 +375,10 @@ function populateListItem(newListControl, optionItem) { $(this).addClass('idd_listItem_Hover'); }); newListItem.mouseout(function () { $(this).removeClass('idd_listItem_Hover'); }); - newListItem.click(function () { selectItem($(this),true,true,false); }); + newListItem.click(function () { + selectItem($(this),true,true,false); + $('[type="submit"]').focus(); + }); } else { newListItem.addClass('idd_listItem_Disabled');