G Guest May 10, 2005 #1 Does anyone know where I can find a chart that lists the keycodes for javascript event.keycode property? thanks...
Does anyone know where I can find a chart that lists the keycodes for javascript event.keycode property? thanks...
K Ken Cox [Microsoft MVP] May 10, 2005 #2 Aren't they just ASCII values? If so, a chart like this would show the codes: http://www.alcyone.com/max/reference/compsci/ascii.html
Aren't they just ASCII values? If so, a chart like this would show the codes: http://www.alcyone.com/max/reference/compsci/ascii.html
Y Yunus Emre ALPÖZEN [MCAD.NET] May 10, 2005 #3 Use the code given below and press any key that u want to learn code <script language=javascript> <!-- function f() { alert(event.keyCode) } window.document.onkeydown= f //--> </script>
Use the code given below and press any key that u want to learn code <script language=javascript> <!-- function f() { alert(event.keyCode) } window.document.onkeydown= f //--> </script>