vote up 1 vote down star

following code work fine but 1 error

$(document).ready(
function() {


 $("#myCheckboxes input[type='checkbox']").change(function() {
    var checked = $("#myCheckboxes input[type='checkbox']:checked").length;

        if(checked == 4){
           $("#myCheckboxes input[type='checkbox']")
            .attr('disabled',true)
            .find(':checked')
            .attr('disabled',false)
    } else {
        $("#myCheckboxes input[type='checkbox']").attr('disabled',false);
    }


	});
 });

after selection become 4 all check box become disable even selected one, but i don't want to disable selected check box's.

Thanks

flag

65% accept rate
Use >= 4 rather than == 4 – powtac Oct 13 at 16:28

3 Answers

vote up 9 vote down check

Try this

$("#myCheckboxes :checkbox:not(:checked)").attr('disabled', true)

instead of

$("#myCheckboxes input[type='checkbox']")
    .attr('disabled',true)
    .find(':checked')
    .attr('disabled',false)
link|flag
Yeah, I believe that's exactly what the original questioner wanted. – Bob Aman Oct 13 at 14:35
1  
Just to add (I voted up) could also use the :checkbox selector, as in '#myCheckboxes :checkbox:not(:checked)'... – karim79 Oct 13 at 14:39
yes this exactly what i was looking for, gr8 solution and thanks you vary much for that... – air Oct 13 at 16:26
vote up 1 vote down

You should note that this isn't the way to enable/disable DOM elements.
Consider:

<input type="checkbox" disabled='true' />
<input type="checkbox" disabled='false' />

Contrary to how it seems, because they have the disabled attribute, both controls are disabled!
This is for back-compatibly, when HTML had <input type="checkbox" disabled /> - the value is ignored.

The common why to disable an element is by

<input type="checkbox" disabled='disabled' />

Therfore, the proper way of doing this with jQuery is:

$("input:checkbox").attr('disabled', 'disabled'); //disable
$("input:checkbox").removeAttr('disabled'); //enable
link|flag
vote up 0 vote down

I already adjusted my answer to your original question (which you oddly posted as another question on SO). I had a small typo in it which has since been fixed following your comment: http://stackoverflow.com/questions/1560079/set-total-number-of-checkbox-in-array

link|flag
dear sir, you again do it wrongly, actually i want to disable unchecked one, my purpose is that user can't select more than 4 options... anyway thanks for your help – air Oct 13 at 16:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.