Showing posts with label window alert for keys. Show all posts
Showing posts with label window alert for keys. Show all posts

03 October 2011

get the ascii value as well as the typed value in alert

function getval()
{
var keyASCII = window.event.keyCode;
alert(keyASCII);
var keyValue = String.fromCharCode(keyASCII);
alert(keyValue);
}