Categories
book design roundup

Web Accessibility Books

Here’s a great list of accessibility books. Feel free to submit any others in comments. (Updated October 2024)

Related:

book cover: Accessibility For Everyone
book cover: Inclusive Design Patterns
book: A Web for Everyone
Categories
news roundup

Digital Accessibility Newsletters

The web/digital industry certainly moves fast, and arguably even more so in the accessibility field. Here are some good resources to help keep you updated.

More

You may find other accessibility newsletters and great resources on the following web pages.

Related

Know any others? Please leave a comment.

folded newspaper with newsletter in large letters across the top

Last updated Nov 2024

Categories
conference event roundup

Accessibility Toronto Conference a big success!

The inaugural Accessibility Toronto Conference was a big success! The event was held September 28-29, 2017 in the TELUS building in downtown Toronto. (Toronto has been a leader in conducting accessibility “camps” but this was the first “conference”.) Major thanks to the event organizers and sponsors.

#a11yTOConf

Addendum Nov 6, 2017: AMI Inside: a11yTO Conference (YouTube)

Presentation Resources

Here are resources for many of the presentations. Feel free to add any to the comments.

Notes

  • The 7th #a11yTOCamp is scheduled for November 18 at @OCAD. Follow @a11yTO for more info.
  • Great moment: Makoto strips off his flannel shirt and proudly displays a Toronto Blue Jays baseball jersey which was hidden underneath!
  • Personally, it was great meeting some folks in person for the first time whom I’ve know online for years, especially @vavroom. Also met some great new folks!
  • I also really enjoyed visiting Toronto—a very clean, fun, friendly, and diverse city!

Twitter

Below are some selected tweets from the conference. The event’s account is @a11yTO and the hash tag is #a11yTOConf.

https://twitter.com/aardrian/status/913434555410939910

https://twitter.com/jiwon_bang/status/913857498045669387

https://twitter.com/vavroom/status/913794060288225280

https://twitter.com/AidanA11y/status/913476868606763009

https://twitter.com/vavroom/status/913405306603999232

Categories
event

Upcoming Digital Accessibility Events

Here are some great Digital Accessibility events coming soon! One in Canada and the rest U.S. (Scotland appended.) Please feel free to submit more via comments.

For more follow @webaxe and @a11yevents on Twitter.

calendar icon says upcoming events

Categories
aria forms

Accessible Custom Select Dropdowns

In web development, creating custom select dropdowns is difficult. It requires a lot of resources to sufficiently design (annotating the interaction, etc) and develop (the Javascript is fairly complex and the ARIA isn’t easy) and then test. Additional requirements such as option groups and auto-suggest make it even more challenging and time-consuming, and usually frustrating.

Most often the result is not fully accessible; browser and assistive technology is inconsistent; and implementations vary across the web. This is why it’s always better to use native selects with HTML/web. (Native components is also a better choice for native apps.) Don’t forget that HTML selects can be styled with CSS; see these resources by Scott O’HaraRTD, Filament Group, and LugoLabs.

If you must implement a custom select dropdown, you will most like need to use the ARIA listbox rolecombobox role (which specifies a composite widget), and often a combination of those roles. The option role is also required and usually a few other ARIA attributes (for label, state, etc.).

Examples

Here are some great examples which will save many folks a lot of time—if you must customize!

screen shot of custom select; category dropdown and submit button

Other articles