evt keycodes?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Fabian

    #1

    evt keycodes?

    Where can I find a list of event keycode numbers? Specifically, I want
    to know what evt.keycode number is needed to intercept the delete key.


    --
    --
    Fabian
    Visit my website often and for long periods!
    AGAM69 menyediakan berbagai pilihan game online dengan tampilan menarik navigasi praktis serta koleksi permainan yang dapat dinikmati kapan saja


  • Evertjan.

    #2
    Re: evt keycodes?

    Fabian wrote on 03 nov 2003 in comp.lang.javas cript:
    [color=blue]
    > Where can I find a list of event keycode numbers? Specifically, I want
    > to know what evt.keycode number is needed to intercept the delete key.
    >[/color]

    Try it out with this code:

    <body
    onkeydown="this .innerHTML=even t.keyCode">
    press delete or any other key
    </body>

    Anyway, it is ASCII dec 27 = hex 1B

    --
    Evertjan.
    The Netherlands.
    (Please change the x'es to dots in my emailaddress)

    Comment

    Working...