Answers for "input type radio change in button"

1

how to clear radio button input when someone types in an input field

<script>
      $('#textInput').click(function () {
          $('input[name="radio"]').prop("checked", false);
      });
 </script>
Posted by: Guest on December-01-2020

Browse Popular Code Answers by Language