Make Web Application Accessible - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T02:42:17Z http://stackoverflow.com/feeds/question/91170 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/91170/make-web-application-accessible 0 Make Web Application Accessible Joseph Holsten 2008-09-18T09:23:10Z 2008-09-20T23:49:30Z <p>What things have to be done before I can honestly tell myself my web application is accessible by anyone? Or even better, convince Joe Clark. I don't have any video or audio to worry about, so I know I won't need transcripts. What else do I have to check?</p> http://stackoverflow.com/questions/91170/make-web-application-accessible/91187#91187 1 Answer by Galwegian for Make Web Application Accessible Galwegian 2008-09-18T09:25:51Z 2008-09-18T09:32:27Z <p>Your question is very vague, but in short, you need to ensure that your site meets one of the three levels (A, AA, or AAA) of the <a href="http://www.w3.org/TR/WCAG10/" rel="nofollow">Web Content Accessibility Guidelines</a>.</p> <p>FWIW, in my experience, if you are providing anything other than a purely static HTML site, aim for AA. Trying to follow the WCAG guidelines stringently to triple-A standard for a dynamic website is the road to hair loss IMO. This may change with WCAG 2.0.</p> <p>Good luck!</p> <p><strong>EDIT:</strong> @Blowdart suggests running your site through online checkers. This is fine so long as you realise that many of the WCAG guidelines (especially towards the higher end) are so arbitrary, they can only be validated with a human eye.</p> <p>Do not trust the output of these online checkers and blindly stick a AAA badge on your site. If you are called on it, you may be in trouble.</p> <p>+1 Blowdart for suggesting HTML and CSS validation, and Chris Pederick's add-on is <em>great</em>!</p> http://stackoverflow.com/questions/91170/make-web-application-accessible/91192#91192 0 Answer by blowdart for Make Web Application Accessible blowdart 2008-09-18T09:26:22Z 2008-09-18T09:26:22Z <p>Run it through a bunch of checkers. Check the HTML is valid. Try to use it with script disabled. Try to use it with CSS disabled. You can do all of this with the <a href="https://addons.mozilla.org/en-US/firefox/addon/60" rel="nofollow">web developer addon</a> for Firefox</p> http://stackoverflow.com/questions/91170/make-web-application-accessible/91730#91730 1 Answer by Andrew Hedges for Make Web Application Accessible Andrew Hedges 2008-09-18T11:21:03Z 2008-09-18T11:21:03Z <p>If the site is usable with JavaScript and CSS disabled, then you're doing pretty well. The Web Developer toolbar in Firefox lets you easily disable both of these. Another way to check is to use Lynx, a command-line, text-only browser. Beyond that, your best bet is to check the site heuristically against whatever guidelines apply (in the U.S., that's usually Section 508). No site will be perfectly accessible, but doing these things will ensure that yours is very accessible.</p> http://stackoverflow.com/questions/91170/make-web-application-accessible/109805#109805 3 Answer by robertc for Make Web Application Accessible robertc 2008-09-20T23:49:30Z 2008-09-20T23:49:30Z <p>You should also check out the WAI-ARIA stuff: </p> <ul> <li><a href="http://www.w3.org/WAI/intro/aria" rel="nofollow">http://www.w3.org/WAI/intro/aria</a></li> <li><a href="http://alistapart.com/articles/waiaria" rel="nofollow">http://alistapart.com/articles/waiaria</a></li> <li><a href="http://juicystudio.com/article/wai-aria-live-regions.php" rel="nofollow">http://juicystudio.com/article/wai-aria-live-regions.php</a></li> </ul> <p>And, for a perspective on the challenges actually faced by users with various disabilities when they try to use the web, have a look at some of the presentations and videos from the Scripting Enabled conference in London on Friday: <a href="http://scriptingenabled.org/" rel="nofollow">http://scriptingenabled.org/</a> (I don't think all of them are uploaded yet)</p>