I am working on web accessibility and it is important to have alternate text when images are not displayed. Problem is that 'a' tag do not have alt attribute, and it is not option to replace all with 'img' (too much buttons, too much work)
<a id="btnID" class="saveButton" data-tabindex="0" aria-disabled="false" role="button" tabindex="0" title="Save search" href="#">
</a>
css is
a.saveButton {
background: url(../Images/toolbars/saveButton.png) 0px -54px no-repeat;
}
Any ideas? When images are not displayed button is invisible.