The accesskey global attribute provides a hint for generating a keyboard shortcut for the current element. The attribute value must consist of a single printable character (which includes accented and other characters that can be generated by the keyboard).
Note: In the WHATWG spec it says you can specify multiple space-separated characters, and the browser will use the first one it supports. However, this does not work in most browsers. In IE/Edge it will use the first one it supports without problem, provided there are no conflicts with other commands.
The operation to activate the accesskey depends on browser and its platform.
Windows | Linux | Mac | |
---|---|---|---|
Firefox | Alt + Shift + key | On Firefox 57 or newer, Control + Option + key -OR- Control + Alt + key On Firefox 14 or newer, Control + Alt + key On Firefox 13 or older, Control + key | |
Internet Explorer | Alt + key | N/A | |
Google Chrome | Alt + key | Control + Alt + key | |
Safari | Alt + key | N/A | Control + Alt + key |
Opera 15+ | Alt + key | Control + Alt + key | |
Opera 12 | Shift + Esc opens a contents list which are accessible by accesskey, then, can choose an item by pressing key |
Note that Firefox can customize the required modifier key by user's preferences.
In addition to poor browser support, there are numerous concerns with the accesskey
attribute:
accesskey
value can conflict with a system or browser keyboard shortcut, or assistive technology functionality. What may work for one operating system, assistive technology and browser combination may not work with others.accesskey
values may not be present on certain keyboards, especially when internationalization is a concern.accesskey
values that rely on numbers may be confusing to individuals experiencing cognitive concerns, where they number does not have a logical association with the functionality it triggers. accesskey
s are present, so that they are aware of the functionality. Without a method of disclosing this information, accesskey
s may be accidentally activated.Because of these issues, it is generally advised not to use accesskey
for most general-purpose websites and web apps.
Specification | Status | Comment |
---|---|---|
HTML 5.2 The definition of 'accesskey' in that specification. | Recommendation | More realistic behavior described for what is implemented in reality. |
HTML Living Standard The definition of 'accesskey' in that specification. | Living Standard | No change from latest W3C HTML 5.1 spec. |
HTML 5.1 The definition of 'accesskey' in that specification. | Recommendation | No change from HTML5. |
HTML5 The definition of 'accesskey' in that specification. | Recommendation | From HTML 4.01 Specification, several characters can now be set as the accesskey . Also, it can be set on any element. |
HTML 4.01 Specification The definition of 'accesskey' in that specification. | Recommendation | Only supported on <a> , <area> , <button> , <input> , <label> , <legend> and <textarea>
|
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | Yes | Yes | Yes | Yes | Yes | Yes |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/accesskey