INPUT with valid ALT | |
Section 508 1194.22(a); WAI / WCAG 1.0 checkpoint 1.1 | |
Issue Description Image used as a button in the form does not have a valid textual description. Image does not have a LONGDESC attribute linking it to an HTML file that provides a detailed description that would not fit in the ALT attribute. A valid description is a string value of the ALT attribute that is not any of the following:
|
|
How to fix
Add the ALT attribute to the INPUT element while keeping the following in mind:
Beware that when the mouse is used to click on the image, the form and the click coordinates are submitted to the server. If the server takes different actions depending on the location clicked, users of non-graphical browsers will be disadvantaged. For this reason, you should consider alternate approaches such as the following:
|
|
Issue Explanation The ALT attribute describes the associated image so that users without graphics-enabled browsers can still effectively navigate the page. The advent of hand-held, text-only browsers makes the use of ALT descriptions more important now than ever. If the button image does not have a textual description, users of non-graphical browsers will have no idea what clicking on that button will do. Beware of another possible problem: When the mouse is used to click on the image, the form and the click coordinates are submitted to the server. If the server takes different actions depending on the location clicked, users of non-graphical browsers will be disadvantaged. For this reason, you should consider alternate approaches such as the following:
|