9

Is the title attribute for links required for 508 compliance or does the text in the link suffice?

Thanks!

McDowell
  • 102,869
  • 29
  • 193
  • 261
jeffyjeffjeff
  • 93
  • 1
  • 3

3 Answers3

4

The current Section 508 standards don't include any explicit requirements related to links.

An update of these standards is in the works, and may align the standards with WCAG 2.0. WCAG 2.0 simply requires that the purpose of each link be clear to users.

The best way to make a link's purpose clear is via meaningful link text. It's ok to supplement link text with a title attribute if doing so adds clarity, but it's not required, and the information in the title attribute should not be essential because if link text and a title attribute are both present, screen readers typically read the text by default and ignore the title.

There's additional information from the W3C at Understanding SC 2.4.4 (Link Purpose) and H33: Supplementing link text with the title attribute.

3

508 Standards, Section 1194.22 (a) states that:

A text equivalent for every non-text element shall be provided

A link is a text element.

Oded
  • 463,167
  • 92
  • 837
  • 979
2

This seems to be the latest word on accessibility & title attributes for links:

Examples of title attribute use that are NOT USEFUL or are of LIMITED USE:

For additional information not provided as text in a link or surrounding content:

  • <a href="newsletter.PDF" title="PDF file, size 1 mb.">newsletter</a>

  • Instead include such information as part of the link text or next to the link.

Jeromy French
  • 11,372
  • 13
  • 67
  • 119
Mike Gifford
  • 599
  • 1
  • 8
  • 16