A11yAdvent Day 10: ARIA

Yesterday we discussed the usage of the aria-disabled and aria-describedby attributes so it’s a good time to talk more about ARIA as a whole. It stands for Accessible Rich Internet Applications. It’s a specification aiming at enhancing HTML in order to convey more meaning and semantics to assistive technologies, such as screen-readers.

The first advice when it comes to ARIA is to avoid using it when possible. It is a powerful tool that can completely change the way a page or widget gets interpreted by assistive technologies, for good or for bad, so it needs to be used carefully. Generally speaking, prefer using native HTML when possible, and only use ARIA when HTML is not enough (such as for tabs or carousels).

There are a lot of handy guides on the internet on building accessible widgets with the help of ARIA—Inclusive Components by Heydon Pickering has to be one of my favourite.

One thing I would like to bring your attention to is the concept of “live” regions. A live region is an area of a page that announces its content to screen-readers as it gets updated. Consider a container for notifications (or snackbars, croutons or whatever yummy thing they are called) or a chat feed.

div role="log" aria-live="polite">

div>

div role="alert" aria-live="assertive">

div>

A few things to know about live regions:

  • The region container needs to be present and have the aria-live attribute when the document loads. It cannot be dynamically inserted at a later point unfortunately.
  • A role attribute is not mandatory, but recommended (role="region" if no other role fits). Some roles (such as log, status or alert) have an implicit aria-live value, but it is recommended to specify the latter as well for maximum compatibility.
  • Prefer using polite instead of assertive as the latter interrupts ongoing diction to announce the new content, which should be reserved for critical announcements.
  • If the region is guaranteed no longer to be updated, set off as a value to tell the assistive technologies they no longer have to track changes in that container.


This content originally appeared on Hugo “Kitty” Giraudel and was authored by Hugo “Kitty” Giraudel

Yesterday we discussed the usage of the aria-disabled and aria-describedby attributes so it’s a good time to talk more about ARIA as a whole. It stands for Accessible Rich Internet Applications. It’s a specification aiming at enhancing HTML in order to convey more meaning and semantics to assistive technologies, such as screen-readers.

The first advice when it comes to ARIA is to avoid using it when possible. It is a powerful tool that can completely change the way a page or widget gets interpreted by assistive technologies, for good or for bad, so it needs to be used carefully. Generally speaking, prefer using native HTML when possible, and only use ARIA when HTML is not enough (such as for tabs or carousels).

There are a lot of handy guides on the internet on building accessible widgets with the help of ARIA—Inclusive Components by Heydon Pickering has to be one of my favourite.

One thing I would like to bring your attention to is the concept of “live” regions. A live region is an area of a page that announces its content to screen-readers as it gets updated. Consider a container for notifications (or snackbars, croutons or whatever yummy thing they are called) or a chat feed.

<div role="log" aria-live="polite">

div>

<div role="alert" aria-live="assertive">

div>

A few things to know about live regions:

  • The region container needs to be present and have the aria-live attribute when the document loads. It cannot be dynamically inserted at a later point unfortunately.
  • A role attribute is not mandatory, but recommended (role="region" if no other role fits). Some roles (such as log, status or alert) have an implicit aria-live value, but it is recommended to specify the latter as well for maximum compatibility.
  • Prefer using polite instead of assertive as the latter interrupts ongoing diction to announce the new content, which should be reserved for critical announcements.
  • If the region is guaranteed no longer to be updated, set off as a value to tell the assistive technologies they no longer have to track changes in that container.


This content originally appeared on Hugo “Kitty” Giraudel and was authored by Hugo “Kitty” Giraudel


Print Share Comment Cite Upload Translate Updates
APA

Hugo “Kitty” Giraudel | Sciencx (2020-12-10T00:00:00+00:00) A11yAdvent Day 10: ARIA. Retrieved from https://www.scien.cx/2020/12/10/a11yadvent-day-10-aria/

MLA
" » A11yAdvent Day 10: ARIA." Hugo “Kitty” Giraudel | Sciencx - Thursday December 10, 2020, https://www.scien.cx/2020/12/10/a11yadvent-day-10-aria/
HARVARD
Hugo “Kitty” Giraudel | Sciencx Thursday December 10, 2020 » A11yAdvent Day 10: ARIA., viewed ,<https://www.scien.cx/2020/12/10/a11yadvent-day-10-aria/>
VANCOUVER
Hugo “Kitty” Giraudel | Sciencx - » A11yAdvent Day 10: ARIA. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2020/12/10/a11yadvent-day-10-aria/
CHICAGO
" » A11yAdvent Day 10: ARIA." Hugo “Kitty” Giraudel | Sciencx - Accessed . https://www.scien.cx/2020/12/10/a11yadvent-day-10-aria/
IEEE
" » A11yAdvent Day 10: ARIA." Hugo “Kitty” Giraudel | Sciencx [Online]. Available: https://www.scien.cx/2020/12/10/a11yadvent-day-10-aria/. [Accessed: ]
rf:citation
» A11yAdvent Day 10: ARIA | Hugo “Kitty” Giraudel | Sciencx | https://www.scien.cx/2020/12/10/a11yadvent-day-10-aria/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.