Skip to content

Accessibility

Ryan Johnson edited this page Nov 1, 2017 · 22 revisions

Resources

"I'm an Accessibility Consultant. Stop Hiring Me."

  • Read the article

    The native focusable elements are buttons, inputs (of all types), and links. Links. Not the a element, but links. The only difference is in the presence of an href attribute. If the a element has a hyperlink reference, then it’s a link. If it doesn’t, it’s an anchor, and doesn’t receive focus in the tab order.

Link Anchor
<a href="#deep-link">Deep Link</a> <a id="deep-link"></a>
Receives focus in tab order. No focus given.
Clone this wiki locally