Skip to content

Technique SCR35:Making actions keyboard accessible by using the onclick event of anchors and buttons

Applicability

Script used with HTML.

This technique relates to 2.1.1: Keyboard (Sufficient when used with G90: Providing keyboard-triggered event handlers).

Description

The objective of this technique is to demonstrate how to invoke a scripting function in a way that is keyboard accessible by attaching it to a keyboard-accessible control. In order to ensure that scripted actions can be invoked from the keyboard, they are associated with "natively actionable" HTML elements (links and buttons). The onclick event of these elements is device independent. While "onclick" sounds like it is tied to the mouse, the onclick event is actually mapped to the default action of a link or button. The default action occurs when the user clicks the element with a mouse, but it also occurs when the user focuses the element and hits enter or space, and when the element is triggered via the accessibility API.

This technique relies on client-side scripting. However, it is beneficial to provide a backup implementation or explanation for environments in which scripting is not available. When using anchor elements to invoke a JavaScript action, a backup implementation or explanation is provided via the href attribute. When using buttons, it is provided via a form post.

Examples

Example 3: Button that runs a script and falls back to a form post for users without script

This approach can be used by sites that do not rely on script, if and only if the form post provides the same functionality as the script. The onsubmit="return false;" prevents the form from submitting.

<script>
function doStuff() {
  //do stuff
}
</script>
<form action="doStuff.aspx" onsubmit="return false;">
  <input type="submit" value="Do Stuff" onclick="doStuff();">
</form>

A working example of this code is available. Refer to Creating Action Buttons using JavaScript.

Example 4: Button that runs a script, implemented with input type="image"

Note that an alt attribute must be added to the input to provide a text equivalent for the image. This approach should only be used when script is relied upon.

<script>
function doStuff() {
  //do stuff
  return false;
}
</script>
<input type="image" src="stuff.gif" alt="Do stuff" onclick="return doStuff();">

Example 5: Button that runs a script, implemented with input type="submit", input type="reset" or input type="button"

This approach should only be used when script is relied upon.

<input type="submit" onclick="return doStuff();" value="Do Stuff">

Example 6: Button that runs a script, implemented with button

This is valuable when you want more control over the look of your button. In this particular example, the button contains both an icon and some text. This approach should only be used when script is relied upon.

<button onclick="return doStuff();">
  <img src="stuff.gif" alt="stuff icon">
  Do Stuff
</button>

Other sources

No endorsement implied.

Tests

Procedure

For all script actions associated with a, button, or input elements:

  1. In a user agent that supports Scripting

    • Click on the control with the mouse.
    • Check that the scripting action executes properly.
    • If the control is an anchor element, check that the URI in the href attribute of the anchor element is not invoked.
    • Check that it is possible to navigate to and give focus to the control via the keyboard.
    • Set keyboard focus to the control.
    • Check that pressing ENTER invokes the scripting action.
    • If the control is an anchor element, check that the URI in the href attribute of the anchor element is not invoked.
  2. In a user agent that does not support Scripting

    • Click on the control with the mouse.
    • If the control is an anchor element, check that the URI in the href attribute of the anchor element is invoked.
    • Check that it is possible to navigate to and give focus to the control via the keyboard.
    • Set keyboard focus to the control.
    • If the control is an anchor element, check that pressing ENTER invokes the URI of the anchor element's href attribute.

Expected Results

  • All of the above checks are true.
Back to Top