Categories
roundup tools wcag2

WCAG Cheat Sheets and Checklists

Here are some great checklists and filtering tools for the W3C’s Web Content Accessibility Guidelines—WCAG 2.0 and WCAG 2.1 [and now WCAG 2.2]. Know any others?

Related

W3C WCAG 2.0

Last updated Sep 2024

Categories
facebook google jobs mobile web youtube

Accessibility Jobs, April 2015 (all in California!)

Wow, many technical accessibility jobs open in Silicon Valley in Northern California!

Thanks @a11yJobs and @a11yBay

Categories
conference csun interview podcast review

CSUN15 Review & Interviews in Podcast 101

Another CSUN conference has come and gone. This year was the 30th Annual International Technology and Persons with Disabilities Conference (Twitter hash tag #CSUN15) held in downtown San Diego, California from March 2 to March 7, 2015 at the Manchester Grand Hyatt Hotel.

Below is a podcast with three interviews; some resources on recommended sessions; info on fun special events and activities; two award events; a short Best Of list; about a conference theme; and next year’s dates plus links to conference tips.

Podcast Interviews

I had the opportunity to speak to a few folks while attending; check it out!

Download Web Axe Episode 101 (CSUN15 Interviews)

[transcript of podcast 101]

  • Sandy Plotin: Managing Director of the Center on Disabilities; California State University, Northridge (CSUN)
  • David MacDonald (@DavidMacD) of CanAdapt Solutions
  • Steve A Lee (@SteveALee) of Open Directive

Recommended Sessions

Fun Stuff

I want to give a shout-out to three Tweeps I’ve known online for a while now and finally met in-person: Mike Gifford (@mgifford), Adrian Roselli (@aardrian) and Jason Kiss (@jkiss).

The 30th Anniversary Party featured keynote speaker Mick Ebeling (@mickteg) of Not Impossible Now (@notImposs). It was very interesting and moving—a great keynote.

“Surround yourself with people who make you feel stupid.”
-Mick Ebeling

Geri Jewell, one of the past Keynote Speakers, served as the program’s emcee and introduced performances by comedian Chris Fonseca (who was hilarious!) and musician and humorist, Mark Goffeney.

Once again, happy CSUN birthdays to @Jennison and @MarcySutton. The birthday celebrations sure brought a lot of income to The Cheesecake Factory across from the hotel!

There were a couple sky-diving outings planned and executed, wow!

There was a tandem bike event organized by @MarcySutton, @Nethermind and sponsored by @SimplyAccesses.

Highly successful Sign Language Karaoke event organized by Wendy Chisholm (@WendyABC) in conjunction with @DequeSystems. [Note that eBay and other folks donated to this event but don’t believe it wasn’t announced.]

CSUN15 Photo query on Twitter (no alt text of course, you need to use @EasyChirp for that!)

Added March 22: CSUN15 Flickr Album by @DennisL

Awards

The good folks at @Knowbility held an event to announce and present awards to the Community Heroes of Accessibility. Also, here’s a cool tote bag I picked up at the Knowbility exhibit booth.

Project Possibility (@ProjPossibility) held the SS12 Finals on Saturday morning. Congrats to the winner USC‘s “Stealth Fly” team who edged out CSU Northridge. The team presented a competitive vertical-scroller game to three judges.

Best Of

  • Most popular session: Jamie Knight (@JamieKnight) “Cognitive Accessibility 101”. So much in demand that it was actually repeated the next day!
  • Best Dressed: Sam Ogami of HP. He is one nice, classy fellow!
  • Best slide: Dude, where’s my ARIA?
  • Best nearby restaurant: Puesto (wicked tacos and drinks)

Theme

A theme which became obvious throughout the conference is this: embed accessibility into the development process—everyone is responsible. This topic was mentioned in numerous sessions, and with good reason. Teams must work together; from execs to content owners, to designers, to developers, to quality engineers.

Next Year

The conference next year is planned for March 21-26 2016 (a bit later than usual). There will be a new exhibitor call for papers (in addition to science research and general session), and less paper/Braille programs (more digital). If you plan on attending, you’ll find some great advice in these two articles:

Other CSUN15 Reviews

Categories
roundup

Link Roundup – Feb 2015

Some excellent recent resources on web accessibility:

Categories
aria design layout table

Layout Tables Tip

It’s 2015, so hopefully web developers know that table elements should not be used for layout. There are many reasons why CSS for layout is better but at the core, HTML tables are data tables; they’ve always been meant for data.

But even today, sometimes a table is used for layout, for whatever reason—time constraints, lack of CSS skills, legacy code, etc.

If a table is used for layout, add ARIA role of presentation to the table element. This will remove the table elements from the Accessibility API which provides for a better user experience for users of assistive technology, particularly screen readers.

Other elements such as caption, summary, and thead should be removed. See the Microsoft resource ARIA Presentation Table Error.

Here’s a code example derived from a W3C example for the use of role=presentation. The following code in the HTML tree:

<table role="presentation">
<tr><td>Foo bar</td><tr>
</table>

Becomes this in the accessibility tree:

<>
<><>Foo bar</></>
</>

Further reading: