EnterキーでフォーカスをテキストボックスからAjaxコンボボックスに移動したい
<script type="text/javascript">
$(document).ready(function () {
$("#txtGroupSname").keydown(checkForEnter);
function checkForEnter(event) {
if (event.keyCode == 13) {
document.getElementById("cmbUnder").focus();
return false;
//$("#cmbUnder").focus();
}
}
});
txtGroupSname は私のテキストボックスで、cmbUnder は ajax コンボボックスです。
アイデアや提案をお願いします。ありがとう、