установить общее количество флажков в массиве

У меня есть флажок, как этот

for($j=1;$j<=10;$j++) <input type="checkbox" name="chkLimit[]" id="chkLimit_<?php echo $j;?>" value="<?php echo $j;?>" /> 

я получил 10 флажок

и я пишу код jquery, как это …

  $(document).ready( function (){ setLimitSelection(); } ); function setLimitSelection(){ $('input[name="chkLimit[]"]').limitSelection( { // number of items to limit to limit: 4, // on error, do this onfailure: function (n){ $("#idCheckboxMsg").html( "You can not select more than " + n + " items." ); return false; }, // on success, do this onsuccess: function (n){ $("#idCheckboxMsg").html(""); return false; } } ); $('select[name="selLimit[]"]').limitSelection(10); } $("input.chkLimit").click(function() { var numSelected = $("input.chkLimit[]:checked").length; var numLeft = 10 - parseInt(numSelected); $("#statusBox").html("You have "+numSelected+" CD's selected.<br>You have "+numLeft+" selections left."); }); 

я хочу: пользователь не может выбрать более 4 флажков

благодаря