jQuery décoche toutes les autres cases quand on est coché
$('input.example').on('change', function() {
$('input.example').not(this).prop('checked', false);
});
ayaan
$('input.example').on('change', function() {
$('input.example').not(this).prop('checked', false);
});