jquery uncheck radio code example
Example 1: unset radio button jquery by name
$("input:radio[name='thename']").each(function(i) {
this.checked = false;
});
Example 2: radio button unchecked html jquery
$(this).prop('checked', false);
// Note that the pre-jQuery 1.6 idiom was
// $(this).attr('checked', false);