Skip to content

Technique G76:Providing a mechanism to request an update of the content instead of updating automatically

Applicability

Any technology or combination of technologies that support automatic updates.

This technique relates to:

Description

The objective of this technique is to let the user control if and when content is updated, in order to avoid confusion or disorientation caused by automatic refreshes that cause a change of context. Users of screen readers may find automatic updates confusing because it is not always clear what is happening. When a page is refreshed, the screen reader's “virtual cursor", which marks the user's current location on the page, is moved to the top of the page. People who use screen magnification software and people with reading disabilities may also be disoriented when pages are refreshed automatically.

Some content is frequently updated with new data or information. Some developers force automatic updates by inserting code in the content that causes the content to request a new copy of itself from the server. These updates and the frequency of these updates are not always under the user's control. Instead of triggering updates automatically, authors can provide a mechanism that allows the user to request an update of the content as needed.

Examples

Example 1: Providing a button to update content

In HTML, a developer can provide a button or link that allows the user to update the content. For example, on a page with news items.

<button type="button">Update this page</button>

Tests

Procedure

  1. Find mechanisms to update the content (if such a mechanism is present).
  2. For each such mechanism, check if it allows the user to request an update.
  3. For each such mechanism, check if it can cause an automatic update.

Expected Results

  • If #2 is true, then #3 is false.
Back to Top