$("input[type=checkbox]").on("click",function(){ if($(this).is(":checked")){ $(this).sibllings("input[type=checkbox]").attr("checked",false); }else{ $(this).sibllings("input[type=checkbox]").attr("checked",true); }});