Reputation: 1550
I am using the web application and i want to use the function keys(f1,f2,...) in my web application as we can do in the windows application.
How can i do this?
Thanks, Vara Prasad.M
Upvotes: 1
Views: 2931
Reputation: 610
It's a crazy idea.
The F keys already have functions native to the browser, in IE for example:
Even if you detect keystrokes the browser will still perform its native function.
Upvotes: 0
Reputation: 20617
You can do it if you write a plugin like ActiveX, Flash or Silverlight. Depending on the install the user will still have to grant permission to run executables.
Upvotes: 2
Reputation: 42414
You can try it your self:
http://www.ryancooper.com/resources/keycode.asp
Still remember that I don't think the actual behavior will change (so I you press F1 you might detect that but in IE still the help file will open). So take inot acount the usefullness/useability of your solution.
Upvotes: 2