Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

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

<script>
      $('#textInput').click(function () {
          $('input[name="radio"]').prop("checked", false);
      });
 </script>
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #clear #radio #button #input #types #input #field
ADD COMMENT
Topic
Name
6+4 =