Answers for "html set radio button checked and still can check others"

4

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

radio checked on start

<!--HTML solution-->
<input type="radio" checked/>
<!--XHTML solution-->
<input type="radio" checked="checked" />
Posted by: Guest on August-27-2021

Code answers related to "html set radio button checked and still can check others"

Browse Popular Code Answers by Language