What fresh hell is THIS now? - Patrick Lauke
<button>
instead? for list of valid attributes on <anchor>
https://dev.w3.org/html5/html-author/#the-a-element
[johnbhartley] @tyronem because it is already a link, you wouldn't need to add a role of link onto the <a>
as browsers will already interpret it as such. if you would want it to act like a button you could give it role="button"
but in this case it sounds like it's a true link. here's how browsers/AT ought to read it: http://maxdesign.com.au/jobs/sample-accessibility/05-forms/attribute-disabled.html
if the link performs like a button then you could use the aria-disabled="true" disabled
combo. to get the AT to read it as "Disabled"