Not sure where to start?
Start with a free analysis of your website's accessibility.
GET STARTEDDigital Accessibility Index: Learn where the world’s leading brands fall short on accessibility.
See ReportAll functionality of the content is operable through a keyboard interface without requiring specific timings for individual keystrokes, except where the underlying function requires input that depends on the path of the user's movement and not just the endpoints.
Wherever possible, content can be operated through a keyboard or keyboard interface (so an alternate keyboard can be used). When content can be operated through a keyboard or alternate keyboard, it is operable by people with no vision (who cannot use devices such as mice that require eye-hand coordination) as well as by people who must use alternate keyboards or input devices that act as keyboard emulators.
2.1.1 Keyboard: All functionality of the content is operable through a keyboard interface without requiring specific timings for individual keystrokes, except where the underlying function requires input that depends on the path of the user's movement and not just the endpoints. (Level A)
Note 1: This exception relates to the underlying function, not the input technique. For example, if using handwriting to enter text, the input technique (handwriting) requires path-dependent input but the underlying function (text input) does not.
Note 2: This does not forbid and should not discourage providing mouse input or other input methods in addition to keyboard operation.
tabindex
attributes to elements on pageonsubmit, onload, onunload, onchange,onfocus
) or add keyboard event handlers (onkeypress, onkeyup,onkeydown
, ) in addition to mouse based handlers (onmousedown
).<a>
tag. The user agent will take care of firing an onclick
event for you if activated via the keyboard.onclick
handler, as these elements do not respond to keyboard input.