Fixed How to uncheck a radio button? #dev #it #asnwer
Fixed How to uncheck a radio button? #dev #it #asnwer
How to uncheck a radio button?
I have group of radio buttons. I want to uncheck the check buttons after an AJAX form is submitted using jQuery. I have the following function:
function clearForm(){ $('#frm input[type="text"]').each(function(){ $(this).val(""); }); $('#frm input[type="radio":checked]').each(function(){ $(this).checked = false; }); }
With the help of this function I can clear the…
View On WordPress
















