check box jquery code example
Example 1: jquery check checkbox
$('.myCheckbox').prop('checked', true);
$('.myCheckbox').prop('checked', false);
Example 2: check a checkbox jquery
$('#grepperRocks').prop('checked', true);
Example 3: check box jquery
if(document.getElementById('isAgeSelected').checked) {
$("#txtAge").show();
} else {
$("#txtAge").hide();
}