Which is the key on the keyboard having the keycode as 13
?
switch(key) {
case 37:
$.keynav.goLeft();
break;
case 38:
$.keynav.goUp
function myFunction(event) {
var x = event.charCode;
document.getElementById("demo").innerHTML = "The Unicode value is: " + x;
}
Keycode 13 is:
Press a key on the keyboard in the input field to get the Unicode character code of the pressed key.
You can test in below
Note: The charCode property is not supported in IE8 and earlier versions.