What fresh hell is THIS now? - Patrick Lauke
<li><button type="button" value="Sales">Sales</button></li> <li><button type="button" value="Downloads">Downloads</button></li>
[jv] What do you do when a company owner or team lead says
"How money people will be affected if we improve or not improve accessibility of our app, does google analytics show any data?"
x
right now to say “This program has the feature described in the row heading!” but I bet that’s not really accessible. And neither would be a simple checkmark icon. Maybe an icon with a title="Yes"
or something…? (thinking face emoji) Any help would be appreciated!
[svinkle] @a.cheng06 I’ve done this in the past which works well:
<td> <svg class="icon__features-table icon__features-table--yes" viewBox="0 0 48 48" aria-hidden="true" focusable="false"> <use xmlns:xlink="https://www.w3.org/1999/xlink" xlink:href="#yes"></use> </svg> <span class="visuallyhidden">Yes</span> </td>
I have an SVG sprite in use there but the idea is to hide the icon from assistive technology then expose the written meaning in a visually hidden element.