John Resig on Accessibility, ARIA and Fire Vox

April 30, 2008 by Jim · 1 Comment 

I’ve been using jQuery more and more at work but have been having to hold off some of the more advanced uses because of accessibility concerns. Working with the Government we are looking more and more at 508 and accessibility and right now AJAX is a bit of a gray area.

Today John Resig (author of jQuery) has a great blog post about Ajax Accessibility in which he discusses Google’s use of ARIA in Google Reader and also mentions  Fire Vox:

Fire Vox is an open source, freely available talking browser extension for the Firefox web browser. Think of it as a screen reader that is designed especially for Firefox.

In addition to the basic features that are expected of screen readers, such as being able to identify headings, links, images, etc. and providing navigational assistance, Fire Vox provides support for MathML and CSS speech module properties. It also works on Windows, Macintosh, and Linux.

I’ll certainly be setting this up today to give it a whirl! If you are interesting in accessibility, 508, and AJAX I’d check out John’s post!

Fetching Data With jQuery

November 30, 2007 by Jim · 7 Comments 

I’ve been doing more and more with jQuery and thought I’d post a few examples. In my current project I’m building a really huge form for people to fill out if they want to work from home. The form needs to be approved by different people depending on your division. So on my form I have a series of radio buttons and based on the users selection the form will submit the request to the appropriate manager. I wanted to provide some form of visual feedback and came up with this:

Fetching Data with jQuery

Now lets take a look at the code to see how I did it… Read more