$('#ProductSearch').keydown(function (event) {
switch (event.keyCode) {
case 13:
if ($(this).val() != '') {
window.location.href = "/Sell/Index?ProductSearch=" + $(this).val();
}
break;
}
});
KeyCode
KeyCode | Value |
13 | Return or Enter key on keyboard |
Comments