Check checkbox
HTML
<input type="checkbox" checked /> 1
<input type="checkbox" /> 2
JavaScript
$('input[type="checkbox"]').on('change', function() {
$('input[type="checkbox"]').not(this).prop('checked', ! this.checked);
});
<input type="checkbox" checked /> 1
<input type="checkbox" /> 2
$('input[type="checkbox"]').on('change', function() {
$('input[type="checkbox"]').not(this).prop('checked', ! this.checked);
});