Hello all,
I have group of radio buttons. I want to uncheck the check buttons after an ajax form submitted. 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 values at the textboxes. But i can't clear the values at the radio button. BTW i also tried $(this).val(""); but got no use.
Thanx