The possibility of reacting to user actions is what differentiates web pages from printed and static documents. When a visualisation is part of a website, the visualisation can also be interactive and react in some way to actions performed by the user. But the the kind of actions, their intent and the reactions from the web page or visualisation are very diverse. So let’s start by taking a closer look at what interactive visualisations are and what they can do first, before looking at how the interactivity can be made accessible.

Interactivity in HTML

Any HTML element can be made interactive: with JavaScript you can specify what should happen to the web page and its content when an element is clicked, for example. But some HTML elements were developed specifically to receive user actions. These include:

These interactive elements are part of the HTML standard, and as a result they are very well supported in browsers and assistive technology like screen readers. When these elements are using semantic HTML (when a button is a <button> element, see the section on semantic HTML in the Accessible HTML module), screen readers will announce and read these elements correctly, and screen reader users will know how to interact with them.

But there is some freedom in how to use and label these interactive HTML elements. Links for example, can enclose any text. Compare the HTML snippets below.

<p>Whales are really awesome creatures. To find more out about whales, <a href="<https://en.wikipedia.org/wiki/Whale.html>">click here</a>.</p>
<p>Giraffes are really awesome creatures. <a href="<https://en.wikipedia.org/wiki/Giraffe>">Find out more about Giraffes</a>.</p>

The latter snippet is more accessible, because the text of the content of the link is understandable out of context, on its own, while in the former it only contains the generic “click me” text. Many screen readers can compose a list of all links contained in a page, so users know where they can navigate to from the current page. The text content of the links are used to label and search the listed links of a page, and generic link text like “click here” is not very helpful in that context.

<aside> 🔗 You can try this on the links.html page. Similar to listing all the headers on a page in ChromeVox (see the Accessible HTML module), you can press the ChromeVox modifier key + L > L to get a List of the Links on a page, which you can then navigate. Clicking a link is done with Chromevox modifier key + space bar or Chromevox modifier key + enter. Check the source HTML of the page here.

</aside>

When a link points to something other than a web page url (for example to a file for downloading) the text of the link should communicate clearly what will happen when it is clicked.

Similar to links, the text on a <button> should communicate what will happen when it is clicked. So text like “Click here” or “Click me” should be avoided.

Another main concern for accessible user interfaces for web pages is that pages should be navigable and operable with the keyboard only. In most browsers, you can use the tab key to navigate the interactive elements on a page. Visually, the element that receives focus after tabbing will be highlighted. Screen readers will announce the type of element that received focus.

<aside> 🔗 Try using the tab key on the inputs.html page and interact with the inputs using the arrow and space bar/enter keys. Check the source HTML of the page here.

</aside>

When an <input> element is focussed, screen readers will announce the type of input (text, number, radio button, checkbox, …) and also read out the accompanying <label> element if it is present.

<div>
  <label for="name">Fill in your name:</label>
  <input type="text" id="name" name="name">
</div>

If the <label> element is not present, screen readers might only announce that an input is focussed and can be edited, but not what is expected to be filled in in the text input: