Answers for "how to checked only one radio button"

6

html radio only one checked

<!--Just manke both names equal -->
<input type="radio" name="options" id="1"/>
<input type="radio" name="options" id="2"/>
Posted by: Guest on December-10-2020
0

set checked radio button to read only

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

Code answers related to "how to checked only one radio button"

Browse Popular Code Answers by Language