Answers for "clear radio form html javascript"

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
0

javascript clear radio button

document.querySelector('input[name="Choose"]:checked').checked = false;
Posted by: Guest on August-28-2021

Browse Popular Code Answers by Language