Answers for "remove radio button default checked style"

3

default checked radio button

<input type="radio" name="imgsel" value="" checked>
Posted by: Guest on February-23-2020
0

clear the input when change the radio button

$('input[name="am_payment"]').on('click', function() {
   if ($(this).val() === '') {
      $('#theamount').val('').prop("removed", true).focus();
   }
   else {
      $('#theamount').val('').prop("disabled", false);
   }
});
Posted by: Guest on November-05-2020

Code answers related to "remove radio button default checked style"

Browse Popular Code Answers by Language