how to clear radio button input when someone types in an input field
<script>
$('#textInput').click(function () {
$('input[name="radio"]').prop("checked", false);
});
</script>
how to clear radio button input when someone types in an input field
<script>
$('#textInput').click(function () {
$('input[name="radio"]').prop("checked", false);
});
</script>
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);
}
});
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us