Radio buttons are commonly used for selecting one of a group of choices.
<input type="radio" name="sex" value="male"> Male
<input type="radio" name="sex" value="female"> Female
Only one option can be selected when the 'name' property is same.
If the 'name' property is different then you could select both.
<input type="radio" name="sex1" value="male"> Male
<input type="radio" name="sex2" value="female"> Female



LinkBack URL
About LinkBacks




Bookmarks