WebAIM - Web Accessibility In Mind

E-mail List Archives

Re: Separating various radio buttons

for

From: Ryan E. Benson
Date: Aug 1, 2016 12:23PM


Also, have a read through of http://webaim.org/techniques/forms/controls

Ryan E. Benson

On Aug 1, 2016 14:11, "Jamous, JP" < <EMAIL REMOVED> > wrote:

> Marc,
>
> I used this code, but I am unable to use the arrow keys to switch from one
> radio button to another in forms mode on. I can tab through them. What
> would make the arrow keys toggle through them though?
>
> <form>
> <fieldset>
> <legend>
> Overall, how would you rate the experience you received during your
> contact with our representative today?
> </legend>
>
> <input type="radio" id="VeryGood">
> <label for="VeryGood">
> Very Good
> </label>
>
> <input type="radio" id="Good">
> <label for="Good">
> Good
> </label>
> </fieldset>
> </form>
>