sto provando cosi non funziona si accendono tutti e due:
codice:
$("#chkNote").click(
function() {
if ( $('#chkApp').attr('checked')) {
//$('#chkApp').attr('checked', false);
$('#chkApp').removeAttr('checked');
alert("1");
} else {
alert("2");
$('#chkApp').attr('checked', 'checked');
}
ecc ecc
$("#chkApp").click(
function() {
if ( $('#chkNote').attr('checked')) {
//$('#chkApp').attr('checked', false);
$('#chkNote').attr('checked', 'checked');
alert("1 app");
} else {
alert("2 app");
$('#chkNote').removeAttr('checked');
grazie mille..