section508

Enhancing the web user experience for the vision impaired

I was listening to a recent episode of Hanselminutes where Scott Hanselman was discussing accessibility in web applications and it got me thinking about accessibility in my own applications. We all understand the importance of semantic markup in our web applications as it relates to accessibility but what about other simple enhancements...

Web Site Compliance with the Americans with Disabilities Act (ADA)

Are there any automatic, online or off, tools for testing xhtml/css for compliance with screen readers and other visual guidelines of the Americans with Disabilities Act (ADA)? ...

Flash and Accessibility

As a web developer, a number of the projects I work on fall under government umbrellas and hence are subject to 508 Accessibility laws, and sometimes W3C accessibility guidelines. To what extent can Flash be used while still meeting these requirements? For using javascript, the mantra is "Degrade gracefully" by providing the same conten...

Should Visual Studio 2008 throw an accessibility error (508) with a 100% table driven layout?

I'm trying to make sure my work is 508 compliant more and more these days, but noticed that VS2008 doesn't throw an error if you have a 100% table driven layout instead of css. I always thought that to be 508 compliant you needed to drop the "tables for layout" idea ... If this is true, how can I force studio to make these errors ins...

asp.net 508/WAI CMS

2 questions: Does using MVC make it any easier to build 508/WAI compliant sites? Anyone know of a good asp.net based CMS platform that is 508/WAI compliant or at least, tries to make it easier to build sites that are? ...

Tools and practices to make a large ASP.NET web application section-508-compliant

We're about to migrate an existing large ASP.NET web application to make it section-508 compliant. Are there any recommended tools and practices that can be employed for this kind of project? ...

Is there a way to inspect flash movie elements live in AS2?

I have a major problem with a flash based training course that is rendering extra graphics that are UNSEEN. This is realized when a screen reader is used to run 508 compliance tests on the course. There are various times when it just says 'graphic 13' and I have no way of telling what the object is that is getting this title and becoming...

How important is Section 508 and/or WCAG compliance in your website? Is your website compliant?

How important is compliance with the various accessibility guidelines when developing a website, especially if you don't know who will be using your site? Using the HiSoftware Cynthia Says Portal, I actually checked StackOverflow and found that there are only a few warnings for Section 508 compliance, so I would assume that it is easie...

Tagged PDF

How can edit PDF that has Tags specifically created for 508 compliance? ...

Is my form laid out in a table accessible?

I am making a form to search for colleges based on athletic programs offered and the division of the sport. I have laid the form out in a table. The "all divisions" checkbox selects all the checkboxes for that sport. I know screen readers have both forms and tables mode. Is my current design accessible or should I add labels for each i...

JTable Accessible Text (508 Compliance)

On a JTable in Java, how do I set the accessible text on a column, row and/or cell? Normally you would do component.getAccessibleContext().setAccessibleName(text); and that is what JAWS would read upon focusing, but a table "cell" doesn't seem to exist, and columns (from the ColumnModel) do not implement Accessible. I've tried doing so...

Make textboxes, Checkboxes, Dropdowns in DetailsView 508 compliant

I have detailsview which has few dropdownlist and Checkboxes. Now I am trying to make these input fields 508 compliant. Does anyone know about this fix? ...

Using "label for" on radio buttons

When using the "label for" parameter on radio buttons, to be 508 compliant, is the following correct? <label for="button one"><input type="radio" name="group1" id="r1" value="1" /> button one</label> or is this? <input type="radio" name="group1" id="r1" value="1" /><label for="button one"> button one</label> Reason I ask is that ...

Accessibility: Section 508 vs WCAG

My company is based in the UK, but is involved in a website for a US based company. Our website follows the WC3 standards (WCAG 2.0) for accessibility. In terms of the USA does anyone know what the law is on accessibility? (I've heard of section 508 - is this something to look at?) ...

Section 508 and Style Sheets

Hi All, I am new to style sheets and Section 508.I am trying to understand it. As i understand, style sheets provide some specific set of details on how to display a web page. For example, it can mention color, font and size to be used for all elements/specific elements in a page. One of the criteria in section 508 states that, we sho...

How does Javascript use effect 508 Compliance?

As background, I currently develop for a university, and we have problems with departments demanding "web 2.0 content" and accessibility requirements. How do really big sites that are JavaScript based deal with 508 Compliance? Some sites degrade, and others require enabling JavaScript. How much impact does one decision have versus the...

Is there a way to Show/Hide elements without CSS?

Hello All, I am making one Web UI 508 compliant and one requirement states "working with Web UI when CSS is disabled". We have several places where we show/hide elements using style=display:inline and style=display:none and calling them accordingly using JS function calls. When i disable the CSS (using WAT2.0), the hidden elements are a...

Why is this HTML table not 508 compliant?

So I ran one of my pages source code through a 508 compliance checker online, and it came back saying some of my tables are not correct, I followed the guidelines to use the scope setting but it still fails: <table> <tr bgcolor="#f6f7f7"> <td scope="col">adsf</td> <td scope="col">Type</td> <td scope="col">&n...

form label 508 compliance question

Do labels that I create for my form elements need to be in the <form> body? for example would this be compliant: <div style="display: none;"> <label for="somename">Some Name</label> <!-- more labels.. //--> </div> <!-- insert lots of HTML here //--> <form> <input type="text" name="somename" id="somename"> <!-- insert more elem...

Can I make a local style sheet that essentially removes all CSS from pages I visit?

I want to semi-permanently (temporarily but it lasts past a refresh or following a link) browse without CSS in IE6. There doesn't appear to be a way to permanently disable CSS without messing with the registry. Can I make a local style sheet that sets all styles to none, for example, and effectively "turns off" css while i browse? Wh...