Answers for "how to set 3 radio button checked in html"

3

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 "how to set 3 radio button checked in html"

Browse Popular Code Answers by Language