//jQuery 1.6+ use
$('.checkbox').prop('checked', true);
//jQuery 1.5.x and below use
$('.checkbox').attr('checked', true);
//jQuery 1.6+ use
$('.checkbox').prop('checked', true); //false for uncheck
//jQuery 1.5.x and below use
$('.checkbox').attr('checked', true); //false for uncheck
if ($('#check_id').is(":checked"))
{
// it is checked
}
//For jQuery 1.6 and above
$('#myCheckBoxID').prop('checked', true);
//For jQuery Before 1.6
$('#myCheckBoxID').attr('checked','checked');
<script>
//jQuery 1.6+ use
$('#checkbox').prop('checked', true);
//jQuery 1.5.x and below use
$('#checkbox').attr('checked', true);
</script>
$("#checkboxid").prop('checked', true); // Checks the box
$("#checkboxid").prop('checked', false); // Unchecks the box
$("#checkboxid").attr('checked', true);
.prop('checked', true);
var isExpanded = $(this).attr('checked') == "checked";