Home - Priority 1 Index - Priority 2 Index - Priority 3 Index - Accesskeys - Accessibility Validators - Contact

Web Content Accessibility Guidelines

1.18

Priority 1 Item 18

Provide a method that permits users to skip lists of links repeated on every page in a site, such as navigation links.

Skippng links

There are two popular ways to create skip links:

  1. Provide "skip to content text" that links to an anchor tag located past your common navigation menus.
  2. Create a transparent gif and link it to an anchor tag located past your common navigation menus.

Using "skip to content text" to link to the main content.

<a href="#navskip">Skip Navigation  Links</a>
...
<a name="navskip"></a><h1> The  main content...</h1>

Using a transparent image to link to the main content.

<a href="#navskip"><img src="transparent.gif" alt="skip  to main content"></a>
...
<a name="navskip"></a><h1> The  main content...</h1>

More Resources

Grouping and bypassing links - WAI recommended technique.

View WAI Checkpoint 13.6 - Group related links, identify the group (for user agents), and, until user agents do so, provide a way to bypass the group.