Answers for "how to make sure only one radio button is selected"

0

set checked radio button to read only

<input type="radio" name="name" onclick="this.checked = false;" />
Posted by: Guest on July-08-2021
0

selecting only one radio button

<!-- Just give all the radio buttons the same name. 
Html will then allow you to select only one. -->

<input type="radio" name="radAnswer" />
Posted by: Guest on May-31-2021

Code answers related to "how to make sure only one radio button is selected"

Browse Popular Code Answers by Language