It seems to be a recurrent tricky question but I still don't have a fix nor workaround for it:
Is there a way to intercept accesskeys before keyboard shortcuts?
I need to use accesskeys on my favorites navigator IE and also FF, but I don't wan't to consider existing shortkeys as reserved. Otherwise it doesn't leave a lot of possibilities (currently I only use numbers).
Note: by accesskey, I mean the accesskey
html attribute.
Any idea ? Flash apps can do it, so what about JavaScript ?
For example here is an accessible control:
<button onclick="alert('Hello');" accesskey="F">Alt+F to activate</button>
When I try to activate it I just open File menu :'(
This will, obviously, depend on the browser. For the "big three":
In short: No, there is no way to override the browser behavior in Javascript (and arguably that would be a security vulnerability), but all browser have ways to handle these conflicts.