mathiasbynens / jquery-details

World’s first <details>/<summary> polyfill™
https://mths.be/details
GNU General Public License v2.0
121 stars 34 forks source link

Add ARIA annotation #4

Closed mathiasbynens closed 12 years ago

mathiasbynens commented 12 years ago

http://mathiasbynens.be/notes/html5-details-jquery#comment-7

mathiasbynens commented 12 years ago

@stevefaulkner suggested the following:

I have detailed an example implementation: HTML to Platform Accessibility APIs Implementation Guide. Corresponding ARIA attributes: to the summary element add a role="button" making sure the keyboard behaviour associated with buttons is added i.e. focusable, enter or space activates the button) and aria-expanded="true/false" the states corresponding to the absence/presence of open attribute on details (note: aria-expanded is on the summary not the details), that’s it.