How to clear radio button selection in typescript code example
Example: how to clear radio button input when someone types in an input field
<script>
$('#textInput').click(function () {
$('input[name="radio"]').prop("checked", false);
});
</script>