Access Keys

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • nitha menon
    New Member
    • Feb 2008
    • 1

    Access Keys

    Helo Sir/mam

    I Am A Software Engineer Working In Java Platform ,i Need To Implement Keys From F1 To F9 In My Application For Moving From One Page To Another Please Help For Doing This Thing



    Thanking You,
    Nitha Menon.k
  • gits
    Recognized Expert Moderator Expert
    • May 2007
    • 5388

    #2
    hi ...

    in a webpage? please post the code you have so far.

    kind regards

    Comment

    • myth0s
      New Member
      • Jan 2008
      • 32

      #3
      Originally posted by nitha menon
      Helo Sir/mam

      I Am A Software Engineer Working In Java Platform ,i Need To Implement Keys From F1 To F9 In My Application For Moving From One Page To Another Please Help For Doing This Thing



      Thanking You,
      Nitha Menon.k
      "Explorer doesn't fire the keypress event for delete, end, enter, escape, function keys, home, insert, pageUp/Down and tab."

      See here : http://www.quirksmode.org/js/keys.html

      So if you REALLY want to check if the user has pressed F1-F9, you'll have to check the key code like 4 times per second to see if the pressed key code is in the F1-F9 range... I suggest listening for SHIFT/CTRL + # instead.

      Comment

      Working...