What fresh hell is THIS now? - Patrick Lauke
<div id="search-button" class="search__button" type="button" role="button"></div>
<main>
debate
[feather] Regarding Dragon and this thought:
it would be cool if Dragon had a "click icons" command where everything that did only have an icon showed the hidden textual labels (assuming there are some)
A dragon user can say "click link" and it'll put a numbered arrow beside each one so they can say the number and activate it. The problem isn't the functionality. It's that many people we've worked with that use Dragon don't know the methods exist. Sad as that may be :(
now we should all log bugs against all the other browsers
:+1: :+1: only way to get stuff fixed
[rianrietveld] @jiatyan:
There a a few options:
1: Get an accessible theme from the WordPress repository, look for the ones labeled “accessibility-ready” https://wordpress.org/themes/tags/accessibility-ready/
Very good ones are Twenty Sixteen https://wordpress.org/themes/twentysixteen/ and Simone https://wordpress.org/themes/simone/
2: Buy the Genesis Framework and use the sample theme as base. This is also almost WCAG 2 AA http://www.studiopress.com/
[karlgroves] >I'd say knowledge of JS would help you get an accessibility job.
FTFY
all
shorthand, for instance
When a modal dialog opens focus goes to the first focusable item in the dialog.
<dialog tabindex="-1" class="cw_dialog" id="event_email_dialog" role="dialog" style="top: 181px; max-height: 633.5px;" open="open"> <input type="button" aria-label="Click to close this dialog box." title="Close" value="X" class="cw_dialog_close" id="close"> <p class="cw_dialog_title" id="event_email_title">asd</p> <div class="cw_dialog_content_wrapper"> <div class="cw_dialog_body" id="event_email_body">You are about to send an email notifying everyone in your organization that an event has been created.<br><hr><p>This will be sent to 206 learners.</p></div> <div class="cw_dialog_buttons"> <input type="button" class="cw_default_focus" id="event_email_dialog_send" name="event_email_dialog_buttons" value="Send"> <input type="button" id="event_email_dialog_cancel" name="event_email_dialog_buttons" value="Cancel"> </div> </div> </dialog>
role=heading level=2
button (aria-expanded=“false”)
?
document.getElementById('butt-button’).setAttribute('aria-expanded', 'false’)
;)