<script>
$(document).ready(function() {
$('#newsinput').submit(function() {
if($('#title').val() == '') {
alert("상호는 필수 입니다.");
$( "#title" ).focus();
return false;
}
if($("input[type='checkbox']").filter(':checked').size()<2 ) {
alert("시설정보는 2개 이상 선택해야 합니다.");
return false;
}
});
});
</script>
$('input:checkbox:checked').length;
$('input:checkbox').length;
$('input:checkbox:not(":checked")').length;
|