Answers for "how to enable button when radio is checked"

0

disabled radio button

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

how to uncheck a radio button

//jQuery
$('input[name="radio"]').prop("checked", false);

//Vanilla JS
document.getElementById('radio-button').checked = false;
Posted by: Guest on April-18-2021

Code answers related to "how to enable button when radio is checked"

Browse Popular Code Answers by Language