Accessibility Compliant Drop Down Menus - 0 views
Unobtrusive JavaScript is not necessarily accessible JavaScript | 456 Berea Street - 0 views
Lightboxes and keyboard accessibility | 456 Berea Street - 0 views
Web Accessibility for Online Learning - 0 views
Accessible colour combinations | 456 Berea Street - 0 views
WebAIM: Keyboard Accessibility - Tabindex - 0 views
-
tabindex="0" and tabindex="-1" have special meaning and provide distinct functionality in HTML. A value of 0 indicates that the element should be placed in the default navigation order. This allows elements that are not natively focusable (such as <div>, <span>, and <p>) to receive keyboard focus. Of course one should generally use links and form controls for all interactive elements, but this does allow other elements to be focusable and trigger interaction.
-
A value of 0 indicates that the element should be placed in the default navigation order. This allows elements that are not natively focusable (such as <div>, <span>, and <p>) to receive keyboard focus.
-
A tabindex="-1" value removes the element from the default navigation flow (i.e., a user cannot tab to it), but it allows it to receive programmatic focus, meaning focus can be set to it from a link or with scripting. This can be very useful for elements that should not be tabbed to, but that may need to have focus set to them. A good example is a modal dialog window - when opened, focus should be set to the dialog so a screen reader will begin reading and the keyboard will begin navigating within the dialog. Because the dialog (probably just a <div> element) is not focusable by default, assigning it tabindex="-1" allows focus to be set to it with scripting when it is presented.
- ...1 more annotation...
Using ARIA - 0 views
-
aria-describedby with single or multiple id references
-
aria-label and aria-labelledby have similar behaviour in screen readers and the Accessibility API, but aria-label should be reserved for when there is no visible text on the page to reference or when keeping track of id values would be too difficult.
Designing For Accessibility And Inclusion - 0 views
Designing Layouts for Screen Readers - 0 views
« First
‹ Previous
221 - 240 of 448
Next ›
Last »
Showing 20▼ items per page