Get the key code from key event in JavaScript

Description

The following code shows how to get the key code from key event.

Example


<html>
<head>
<title>Key Events Example</title>
<script type="text/javascript">
function handleEvent(oEvent) {<!--   ww w  .  ja v  a 2 s  .com-->
var oTextbox = document.getElementById("txt1");
oTextbox.value += "\n>" + oEvent.type;
oTextbox.value += "\n    target is " + (oEvent.target || oEvent.srcElement).id;
oTextbox.value += "\n    keyCode is " + oEvent.keyCode;
}
</script>
</head>
<body>
<P>Type some characters into the first textbox.</p>
<P><textarea id="txtInput" rows="15" cols="50"
onkeypress="handleEvent(event)"></textarea></p>
<P><textarea id="txt1" rows="15" cols="50"></textarea></p>
</body>
</html>

Click to view the demo

The code above generates the following result.

Get the key code from key event in JavaScript