KeyCode Chart

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Does anyone know where I can find a chart that lists the keycodes for
javascript event.keycode property?

thanks...
 
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>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top