Answers for "html deselect radio button"

1

how to make radio buttons unselectable

Use disabled attribute with input type=radio
<input type="radio" disabled>
Posted by: Guest on June-05-2021
0

disabled radio button

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

Browse Popular Code Answers by Language