24 ways

to impress your friends

Improving Form Accessibility with DOM Scripting by Ian Lloyd

The form label element is an incredibly useful little element – it lets you link the form field unquestionably with the descriptive label text that sits alongside or above it. This is a very useful feature for people using screen readers, but there are some problems with this element.

What happens if you have one piece of data that, for various reasons (validation, the way your data is collected/stored etc), needs to be collected using several form elements?

The classic example is date of birth – ideally, you’ll ask for the date of birth once but you may have three inputs, one each for day, month and year, that you also need to provide hints about the format required. The problem is that to be truly accessible you need to label each field. So you end up needing something to say “this is a date of birth”, “this is the day field”, “this is the month field” and “this is the day field”. Seems like overkill, doesn’t it? And it can uglify a form no end.

There are various ways that you can approach it (and I think I’ve seen them all). Some people omit the label and rely on the title attribute to help the user through; others put text in a label but make the text 1 pixel high and merging in to the background so that screen readers can still get that information. The most common method, though, is simply to set the label to not display at all using the CSS display:none property/value pairing (a technique which, for the time being, seems to work on most screen readers). But perhaps we can do more with this?

The technique I am suggesting as another alternative is as follows (here comes the pseudo-code):

Then, through the magic of unobtrusive JavaScript/the DOM, manipulate the page as follows once the page has loaded:

So, here’s the theory put into practice – a date of birth, grouped using a fieldset, and with the behaviours added in using DOM, and here’s the JavaScript that does the heavy lifting.

But why not just use display:none? As demonstrated at Juicy Studio, display:none seems to work quite well for hiding label elements. So why use a sledge hammer to crack a nut? In all honesty, this is something of an experiment, but consider the following:

Well, it’s an idea to think about at least. How is it for you? How else might you use DOM scripting to improve the accessiblity or usability of your forms?

About the author

Ian Lloyd runs Accessify.com and is a member of the Web Standards Project. Currently he’s getting excited about how DOM scripting can be used to improve plain old HTML forms. Perhaps he should get out more often.

Your comments

  1. § gillbates:

    Just a quick question, why not use fieldset instead of label (maybe even styled as the rest of the form’s labels) in the case of a D.O.B. or other “multi-input inputs”?

  2. § Sundaramurthy C:

    Very nice article

  3. § Ian Lloyd:

    @gillbates: I’ve aluded to doing that in the last paragraph – a combination of CSS and DOM scripting to get it looking like a normal label, but retaining the semantic relationship that you get with fieldset/legend and contents. The DOM part could come it to hide the fieldset and legend (because they are such a bitch to style in CSS) and use the text found in the legend to create a new (easy-to-style) text element elsewhere. Am I making sense here? It’s early in the morning and I’ve yet to have a cup of coffee!

  4. § gillbates:

    I gotcha Ian, I re-read everything paying real attention and it became clear that you had already addressed this. I guess I must’ve missed my coffee when I read it =)

  5. § Russell Polo:

    Cool. I’ve been making webforms for years. I had no idea how much of a noob I was. ;-)

    Is the “for” attribute a defined attribute or is it something you just made up to work with your script ?

    And what does the thisId = labels[i].htmlFor; do?

    isn’t getAttribute supported by IE ?

  6. § Aaron Gustafson:

    Welcome to the dark side, Ian. You’ll like it here.

  7. § Aaron Gustafson:

    Russell: yes and no. for and class are two attributes IE does not play well with. To change the for attribute in IE, you need htmlFor and for class you need className. Most other browsers support get/setAttribute on for and class.

    Now if you want to see something really screwy, check out how you need to work with IE on form elements you want to set a name on.

  8. § Joe Murphy:

    Labels are also extremely useful for radio buttons and checkboxes: You can click on the text enclosed by the label and check the item.

    Labels, when assigned a width and floated, also make for an easy way to align form inputs. To see some of this in action check out this monstrous signup page I put together

  9. § Scott Sauyet:

    Instead of getting the text by using labels(i).childNodes(0).nodeValue and parsing the string, why not use the title attribute of the label element, which “offers advisory information about the element for which it is set.” (WC3 Recommendation).

    It seems the perfect fit, not only semantically correct, but

    format = labels(i).title;

    is certainly a less brittle implementation than

    var format = labels(i).childNodes(0).nodeValue;

    var startpoint = format.indexOf("(format ")+ 8;

    var endpoint = format.indexOf(")");

    format=format.substr(startpoint,(endpoint-startpoint));

    Does this make sense?

    —Scott, who does know that those are supposed to be square brackets, but Textile isn’t playing nicely with source code…
  10. § Fellipe Cicconi:

    Great solution and very nice article :)

  11. § Simon Roe:

    “But why not just use display:none?”

    Because display:none makes some screen readers ignore the content and not read it. This is a very nice way of doing it!

    By the way, you might want to fix the tab order on this form, as tabbing from “http://” to the Message takes me to the logo at the top of the screen!

  12. § Terrence Wood:

    The off left technique is a better solution than display:none which, as Simon points out, most screen readers honor by not announcing it. See discussion at : http://css-discuss.incutio.com/?page=ScreenreaderVisibility

    No js required, hiding labels can be solved with a little css.

    label {

    position:absolute;

    left: -9999px;

    }

    That said, IMHO it is better for accessibility to leave the labels visible so you have a bigger target to hit with your mouse – clicking the label focusses the field which is good for people with motor disabilities.

Commenting is closed for this article.

24 ways: day 3