on click of checkbox jquery code example
Example 1: check a checkbox jquery
$('#grepperRocks').prop('checked', true);
Example 2: jquery checkbox
if($("#isAgeSelected").is(':checked'))
$("#txtAge").show(); // checked
else
$("#txtAge").hide(); // unchecked
Example 3: check checkbox by jquery
$('.myCheckbox').prop('checked', true);
$('.myCheckbox').prop('checked', false);