i have a combo box which has got values and i want to give the user to select the values when the \[code\]Enter\[/code\] key pressed. [*]User can navigate through \[code\]Arrow\[/code\] key[*]Select the value when user enters \[code\]Enter\[/code\] key.I have done this one :\[code\]$('#cmb_CIMtrek_DailyshipCo_CustomerName select').bind('keypress', function(e) { var code = (e.keyCode ? e.keyCode : e.which); if(code == 13) { //Enter keycode //Do something alert("Enter key Pressed"); }});\[/code\]but is not giving alert when I press \[code\]Enter\[/code\] key.What could be the problem and how to solve it?Best Regards.