<script type="text/javascript"> var max = $myrow[count]; // podstavish iz DB
alert (max) ;
$(document).ready(function() {
$('#check').submit(function() {
total = 0;
$('div#chekbox input').each(function(item) {
if ($(this).attr('checked') == true) {
total++;
}
});
if(total > max) {
alert('выберите не более '+ max +' категорий');
}
if (total == 0){
alert('вы не выбрали ни одной категории');
}
});
});
</script>
может кому надо будет... checkbox не блокируется, блокируется сам запрос.
|