체크박스 하나라도 해제 시 전체 체크박스 해제 스크립트입니다. $(document).ready(function(){ $("input[type=checkbox]").on("click",function(){ //체크박스가 클릭될 때 if($(this).attr("id") == "chkAll"){ //전체 체크인 경우 if($(this).is(":checked")){ //전체 체크가 체크되었을 경우 $("input[type=checkbox]").each(function(){ //체크박스 전체 검사 if($(this).attr("id") == "chkAll"){ return true; //전체 체크 일 경우 continue } $(this).prop("checked",true); //전체 체크가 아닐 경우 체크..