jqery checkbox auto checked code example
Example 1: Setting “checked” for a checkbox with jQuery
$('.myCheckbox').prop('checked', true);
$('.myCheckbox').prop('checked', false);
Example 2: jquery uncheck checkbox
$('#myCheckbox').prop('checked', true); // Checks it
$('#myCheckbox').prop('checked', false); // Unchecks it