jquery selected checkbox 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 );
$('#grepperRocks').prop('checked', true);
// Check #x
$( "#x" ).prop( "checked", true );
// Uncheck #x
$( "#x" ).prop( "checked", false );