According to this comment voting isn't accessible. It would be nice if both comment voting and flagging were made accessible to screen reader users since they both have the same issue of needing to be moused over.

share|improve this question

2 Answers

Agree, using <span> for action elements was not our smartest move in retrospect, and we switched back to the more traditional <a>.

Specifically, we changed from:

<span class="vote-up-off" title="...">up vote</span> 
<span class="vote-count-post">12</span> 
<span class="vote-down-off" title="...">down vote</span> 

to...

<a class="vote-up-off" title="...">up vote</a>
<span class="vote-count-post">12</span>
<a class="vote-down-off" title="...">down vote</a>
share|improve this answer

One way this issue could be addressed is by giving each of these items (the up vote element, down vote element, ETC.) an aria role of "link". That should at least fix it for screen reader users whose AT supports ARIA, which most recent ones do. Giving the elements a tabindex of 0 and making it visually obvious when they have focus should also solve it for keyboard only users.

Update: I through together a quick bookmarklet which seems to fix the problem: http://www.cannonaccess.com/2010/09/accessibility-bookmarklet-for-stackoverflow-com-and-friends/

javascript:(function() { $('a, .vote-up-off, .vote-down-off, .star-off')
    .attr({role:'link',tabindex:'0'}); })()
share|improve this answer
The bookmark helped, thanks. Maybe a group of so users should do a section 508 VPAT on the site? It'd be one way of helping the community understand accessibility with examples they could follow along with. – Jared Sep 28 '10 at 13:48

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged