check if radio element is unchecked jquery code example
Example 1: check a checkbox jquery
$('#grepperRocks').prop('checked', true);
Example 2: jquery prop checked
// Check #x
$( "#x" ).prop( "checked", true );
// Uncheck #x
$( "#x" ).prop( "checked", false );