Answers for "how to disable radio in html"

0

disabled radio button

$(':radio:not(:checked)').attr('disabled', true);
Posted by: Guest on October-30-2020
0

disable radio button in html

<label class="radio-inline">
        <input type="radio" value=" " name=" "  disabled>
 </label>
Posted by: Guest on March-21-2022

Code answers related to "how to disable radio in html"

Browse Popular Code Answers by Language