I have an HTML form where there are two groups of radio button, grp1 and grp2. I want to select a particular radio button in grp2 when a certain radio button in grp1 is selected. How can I do that??? Thanks, Varsha.
You could add an onClick event in every radio buttonof grp1. In aim to select on radio button of grp2 each time you click on a radio button of grp1. To access a radio button, it's document.formname.radiobuttonnmae[x] where x is an integer (to access the first one, x must be equal to zero)