PHP and javascript snippets you can copy and paste.

Showing posts with label javascript js_get_keyCode events key. Show all posts
Showing posts with label javascript js_get_keyCode events key. Show all posts

Tuesday, April 17, 2007

js_get_keyCode(e)

/**
* Returns the key code of a key press.
*
* @param object e.
* @return key code.
*/

function js_get_keyCode(e){

if(e.event){ // IE
keyCode = e.keyCode;
}
else if(e.which){
keyCode = e.which;
}
return keyCode;

}