WCAG 1.0 Level A Checkpoint 6.2
Skip Quick Links
Quick Links:
Not Covered Under Section 508
Covered Under Section 508
- Checkpoint 1.1 - 508 1194.22 (a)
- Checkpoint 1.2 - 508 1194.22 (e)
- Checkpoint 1.4 - 508 1194.22 (b)
- Checkpoint 2.1 - 508 1194.22 (c)
- Checkpoint 5.1 - 508 1194.22 (g)
- Checkpoint 5.2 - 508 1194.22 (h)
- Checkpoint 6.1 - 508 1194.22 (d)
- Checkpoint 7.1 - 508 1194.22 (j)
- Checkpoint 9.1 - 508 1194.22 (f)
- Checkpoint 11.4 - 508 1194.22 (k)
- Checkpoint 12.1 - 508 1194.22 (i)
“Ensure that equivalents for dynamic content are updated when the dynamic content changes.”
On a site where content is generated from a database, e.g., www.artforaids.org/home.asp, the imagery is also dynamically pulled from the database. So for each image, if the "alt" attribute were static, say "picture from the gallery", this isn't at all helpful to the visitor. The "alt" attributes should also be pulled from the database so you get, for example, "'El Olivo' by David Smith-Harrison".
Example
Before:
<img src="./gallery/<% =artArray(11,thisRow) %>_thumb.jpg" alt="Gallery Picture" />
After:
<img src="./gallery/<% =artArray(11,thisRow) %>_thumb.jpg" alt="<% =artArray(5,thisRow) %>" />
