Feedback on: irt.org FAQ Knowledge Base Q661
Worth:
Length:
Technical:
Comments:
<label for="radio_id">Click here to select Radio Button</label>
<input id="radio_id" type="radio" name="radio" value="value" />
Worth:
Length:
Technical:
Just right
Comments:
This is nicer code:
<input type='radio' id='sr1' name='sex' value='M' />
<label for='sr1'>Male</label>
<input type='radio' id='sr2' name='sex' value='F' />
<label for='sr2'>Female</label>