I used the below code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Capturing key events</title>
<script type="text/javascript" src="jquery-1.5.2.min.js"></script>
<script>
$(function( ){
$('#target').bind('keyup', typing);
});
function typing(event)
{
$('#p2').text('Character: ' + String.fromCharCode(event.keyCode));
}
</script>
</head>
<body id="target">
<h1>Capturing key events</h1>
<p id="p2"></p>
</body>
</html>
------------------
It is not working. May I know where the mistake is?