Hey all,
I've tried to submit the form data with the enter key, So I made some tests like that
$('#myid').keyup(function(e) {
//alert(e.keyCode);
if(e.keyCode == 13) {
alert('Enter key was pressed.');
}
});
And it's not showing the alert, Nothing happen and nothing appear.
What's the problem ? I think I've something missed in the detecting code.