1

Accessible forms with ARIA live regions

 2 years ago
source link: https://tink.uk/accessible-forms-with-aria-live-regions/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client

Accessible forms with ARIA live regions

10 November 2012

Сообщение для российских читателей

When a form is used to update information on the page, it can be troublesome for screen reader users. Unless the screen reader is focused on the relevant bit of the page, the update goes by un-noticed. ARIA live regions are a simple way to improve the experience for screen reader users.

Quick recap: Screen readers rely almost entirely on the HTML of the page, and focus is moved from one element to another using a range of navigation commands. In other words, a screen reader can only focus on one element at a time.

That's where the trouble starts. If a screen reader is focused on a form field, it can't be focused on the bit of the page being updated as well.

Dynamic updates

The Marks & Spencer website is a good example. When an item is added to the shopping basket, the basket summary at the top right of the page gets updated. In fact it's the only confirmation that the item has been successfully added.

The update is easy to see at a glance, but not at all easy with a screen reader. First you have to discover that something has changed, then you have to find out where it happened. Even once you know this, you still need to move focus back and forth between the summary and the product information, every time you add an item to the basket.

Code example: without ARIA

A massively simplified version of this interaction might look like this:

Code language
<!DOCTYPE html>
<html lang="en">

<head>
<title>Tequila</title>

<script>
var items = 0;
function updateItems () {
items = items + 1;
document.getElementById("quantity").innerHTML=items;
}
</script>
</head>

<body>
<h1>Tequila</h1>
<p>Tequila makes me happy...</p>
<p><button onclick="updateItems()">Add tequila to basket</button></p>

<h2>Basket summary</h2>
<div>
<p>Your basket contains <span id="quantity">0</span> items.</p>
</div>

</body>
</html>

When the button is activated with a screen reader, nothing appears to happen. The page doesn't reload, so focus remains on the button and the screen reader stays silent. The basket summary is updated, but the screen reader user remains oblivious.

The aria-live attribute

The aria-live attribute can be used to turn the basket summary into an ARIA live region. ARIA enabled screen readers can monitor ARIA live regions for changes, and automatically announce them as they happen. The monitoring is done in the background, so even if the screen reader is focused somewhere else on the page at the time, changes within the live region are still announced.

Code example/: with aria-live

Adding the aria-live attribute to the basket summary:

Code language
<h2>Basket summary</h2>
<div aria-live="assertive">
<p>Your basket contains <span id="quantity">0</span> items.</p>
</div>

The aria-live attribute takes three possible values: off (default), polite and assertive. The polite value means that the screen reader will wait until its finished it’s current task before announcing the update, and the assertive value means the update is announced as soon as the screen reader encounters a slight pause (in reality it's almost always immediate).

The aria-atomic attribute

The aria-atomic attribute defines whether all of the content in the ARIA live region should be announced, or only the part that's changed.

Code example: with aria-atomic

Adding the aria-atomic attribute to the basket summary:

Code language
<h2>Basket summary</h2>
<div aria-live="assertive" aria-atomic="true">
<p>Your basket contains <span id="quantity">0</span> items.</p>
</div>

The aria-atomic attribute has two possible values: true and false (default). Using aria-atomic="true" means that all of the content within the ARIA live region will be announced, even though only a small part of it has changed. So screen readers will announce something like "Your basket contains 3 items", instead of just "3".

The All Star route deviation calculator is one of the best examples of this technique in the wild. Developed by Matt Lawson of Nomensa, the form is used to calculate cost savings based on reduced mileage.

As you manipulate information within the form, your potential cost saving is dynamically updated on the page. Because the updated information is an ARIA live region, using the form with a screen reader couldn't be easier.


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK