Display key event code in status bar (IE)
|
|
<html> <head> <title>A Simple Page</title> <script language="JavaScript"> <!-- function press() { var char; char = String.fromCharCode(event.keyCode); window.status = "You pressed " + char; } // --> </script> </head> <body onkeydown="press()">
</body> </html>
|
|
|
HTML code for linking to this page:
Related in same category :
-
-
-
-
-
-
-
-
-
-
|