make checkbox checked html jquery code example
Example 1: Setting “checked” for a checkbox with jQuery
$('.myCheckbox').prop('checked', true);
$('.myCheckbox').prop('checked', false);
Example 2: set checkbox checked jquery
$("#checkboxid").prop('checked', true); // Checks the box
$("#checkboxid").prop('checked', false); // Unchecks the box