sarah
10-04-2002, 06:18 PM
Hi there!
Is it possible to use more than one set of radiobuttons for selections in one form? I tried to use two sets, first set is for 'Method One' or 'Method Two', and the second set is for 'Annual Report' or 'Monthly Report'.
I wanted to select 'Method One' and 'Annual Report' but I could only select one 'Method One' or 'Method Two' or 'Annual Report' or 'Monthly Report'.
The syntax is as follows:
<form name="Country">
<select name="country" size="1" onChange="redirect(this.options.selectedIndex)">
<option>Scotland</option>
</select>
<input type="radio" name="radiobutton" value="radiobutton">Method One
<input type="radio" name="radiobutton" value="radiobutton">Method Two<br>
<input type="radiobutton" name="radiobutton" value="radiobutton" checked>Annual Report
<input type="radiobutton" name="radiobutton" value="radiobutton">Monthly Report
</form>
Is it possible to use more than one set of radiobuttons for selections in one form? I tried to use two sets, first set is for 'Method One' or 'Method Two', and the second set is for 'Annual Report' or 'Monthly Report'.
I wanted to select 'Method One' and 'Annual Report' but I could only select one 'Method One' or 'Method Two' or 'Annual Report' or 'Monthly Report'.
The syntax is as follows:
<form name="Country">
<select name="country" size="1" onChange="redirect(this.options.selectedIndex)">
<option>Scotland</option>
</select>
<input type="radio" name="radiobutton" value="radiobutton">Method One
<input type="radio" name="radiobutton" value="radiobutton">Method Two<br>
<input type="radiobutton" name="radiobutton" value="radiobutton" checked>Annual Report
<input type="radiobutton" name="radiobutton" value="radiobutton">Monthly Report
</form>