WebAIM - Web Accessibility In Mind

E-mail List Archives

Thread: Dropdown menus?

for

Number of posts in this thread: 3 (In chronological order)

From: Liv Detrick
Date: Mon, Mar 15 2010 1:12PM
Subject: Dropdown menus?
No previous message | Next message →

Hello,

I was wondering if anyone has any experience with dynamic drop down menus
within a web form... a typical example would be two dropdown menus; one with
a list of countries, and one with a list of cities. Once you choose a
country, the second dropdown refreshes to include a list of cities within
your chosen country.

I've seen this done with the javascript onChange command or with AJAX... but
I'm unsure of their accessibility... does anyone have any suggestions?

Thank you!

Liv


On Mon, Mar 15, 2010 at 2:00 PM, < = EMAIL ADDRESS REMOVED = >wrote:

> Send WebAIM-Forum mailing list submissions to
> = EMAIL ADDRESS REMOVED =
>
> To subscribe or unsubscribe via the World Wide Web, visit
> http://list.webaim.org/mailman/listinfo/webaim-forum
> or, via email, send a message with subject or body 'help' to
> = EMAIL ADDRESS REMOVED =
>
> You can reach the person managing the list at
> = EMAIL ADDRESS REMOVED =
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of WebAIM-Forum digest..."
>
> Today's Topics:
>
> 1. Accessible Flash Authoring Tool (Travis Roth)
> 2. Re: Accessible Flash Authoring Tool (DAVOUD TOHIDY)
>
>
> ---------- Forwarded message ----------
> From: "Travis Roth" < = EMAIL ADDRESS REMOVED = >
> To: "'WebAIM Discussion List'" < = EMAIL ADDRESS REMOVED = >
> Date: Mon, 15 Mar 2010 10:00:24 -0500
> Subject: [WebAIM] Accessible Flash Authoring Tool
> Hello,
> Is there any information about the accessibility of Adobe Flash CS4
> Professional, or other Flash authoring tools? Much is made about Flash
> accessibility when it comes to the end Flash components. But what about the
> authoring tools? What can a screen reader user do with current tools?
> Thanks.
>
>
> Travis Roth
>
>
>
>
>
>
> ---------- Forwarded message ----------
> From: DAVOUD TOHIDY < = EMAIL ADDRESS REMOVED = >
> To: < = EMAIL ADDRESS REMOVED = >, < = EMAIL ADDRESS REMOVED = >
> Date: Mon, 15 Mar 2010 13:54:17 -0400
> Subject: Re: [WebAIM] Accessible Flash Authoring Tool
>
> I am sure you will find good information here:
>
> http://www.adobe.com/accessibility/products/flash/best_practices.html
> http://www.adobe.com/devnet/flash/articles/accessible_animated_preso.html
>
>
> Davoud
> http://cssfreelancer.awardspace.com/
> P.S. Please join us on face book at:
> http://www.facebook.com/group.php?gid=6850971551
>
>
>
> > From: = EMAIL ADDRESS REMOVED =
> > To: = EMAIL ADDRESS REMOVED =
> > Date: Mon, 15 Mar 2010 10:00:24 -0500
> > Subject: [WebAIM] Accessible Flash Authoring Tool
> >
> > Hello,
> > Is there any information about the accessibility of Adobe Flash CS4
> > Professional, or other Flash authoring tools? Much is made about Flash
> > accessibility when it comes to the end Flash components. But what about
> the
> > authoring tools? What can a screen reader user do with current tools?
> > Thanks.
> >
> >
> > Travis Roth
> >
> >
> >
> >

From: Moore,Michael (DARS)
Date: Wed, Mar 17 2010 10:24AM
Subject: Re: Dropdown menus?
← Previous message | Next message →

I have found these to work quite well. Having them triggered with an onChange event can be a bit of a processing issue when the user works with a keyboard and uses the down arrow to move through the list. The onChange event is triggered each time the user moves to the next selection in the list.

Mike Moore

From: Travis Roth
Date: Wed, Mar 17 2010 10:45AM
Subject: Re: Dropdown menus?
← Previous message | No next message

Mike Moore wrote:
"I have found these to work quite well. Having them triggered with an
onChange event can be a bit of a processing issue when the user works with a
keyboard and uses the down arrow to move through the list. The onChange
event is triggered each time the user moves to the next selection in the
list."

Under normal circumstances, opening a dropdown that has an onChange event
handler with Alt+Down Arrow before arrowing through the list keeps the
onChange event from firing until the dropdown is closed/set with Alt+Up
Arrow.
Unfortunately it seems many users do not know to do this when they
experience a dropdown with onChange.
If the onChange event does not force focus to the next control automatically
it helps a lot for when the user doesn't use the extra keystroke.