Answers for "how to change a button from enable to disable after radio button selected ih html"

2

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

Code answers related to "how to change a button from enable to disable after radio button selected ih html"

Code answers related to "Javascript"

Browse Popular Code Answers by Language