how to uncheck an uncheck the radio button value in jquery code example
Example 1: uncheck all radio button jquery
$('.classname').prop('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);