Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Here is my code:

$("#product1 :checkbox").click(function(){
    $(this)
        .closest('tr') // Find the parent row.
            .find(":input[type='text']") // Find text elements in that row.
                .attr('disabled',false).toggleClass('disabled') // Enable them.
                .end() // Go back to the row.
            .siblings() // Get its siblings
                .find(":input[type='text']") // Find text elements in those rows.
                .attr('disabled',true).removeClass('disabled'); // Disable them.
});

How do I toggle .attr('disabled',false);?

I can't seem to find it on Google.

share|improve this question
Any reason why you can't use the disabled property of the field? $("input").get(0).disabled = isFalse; // jsfiddle.net/uAfhj – Shanimal May 2 at 15:50

4 Answers

up vote 54 down vote accepted

I guess to get full browser comparability disabled should set by the value disabled or get removed!
Here is a small plugin that I've just made:

(function($) {
    $.fn.toggleDisabled = function() {
        return this.each(function() {
            var $this = $(this);
            if ($this.attr('disabled')) $this.removeAttr('disabled');
            else $this.attr('disabled', 'disabled');
        });
    };
})(jQuery);

Example link.

EDIT: updated the example link/code to maintaining chainability!
EDIT 2:
Based on @lonesomeday comment, here's an enhanced version:

(function($) {
    $.fn.toggleDisabled = function(){
        return this.each(function(){
            this.disabled = !this.disabled;
        });
    };
})(jQuery);
share|improve this answer
1  
Thanks, thats exactly what i was looking for – Tommy Arnold Jan 15 '11 at 21:19
13  
This may work, but it's going to be slow, because you're constantly creating new jQuery objects. $.fn.toggleDisabled = function(){ return this.each(function(){ this.disabled = !this.disabled; });} is all you need. – lonesomeday Jan 15 '11 at 21:54
@lonesomeday: I was going to post this but I tend to think that this is not the correct way to set/unset disabled attribute. Anyway, if you can confirm that this is a cross-browser solution..I will update my answer. – ifaour Jan 15 '11 at 22:10
Yes, it's used internally by jQuery as a fallback... – lonesomeday Jan 15 '11 at 22:25

Since 1.6, you could use .prop()

$(elem).prop("disabled",!$(elem).prop("disabled"))
share|improve this answer
2  
Thanks-worked for me. – DobotJr Feb 1 at 17:10
Perfect & simple! – Love May 19 at 23:38

    $('#checkbox').click(function(){
        $('#submit').attr('disabled', !$(this).attr('checked'));
    });

share|improve this answer

This is fairly simple with the callback syntax of attr:

$("#product1 :checkbox").click(function(){
  $(this)
   .closest('tr') // find the parent row
       .find(":input[type='text']") // find text elements in that row
           .attr('disabled',function(idx, oldAttr) {
               return !oldAttr; // invert disabled value
           })
           .toggleClass('disabled') // enable them
       .end() // go back to the row
       .siblings() // get its siblings
           .find(":input[type='text']") // find text elements in those rows
               .attr('disabled',function(idx, oldAttr) {
                   return !oldAttr; // invert disabled value
               })
               .removeClass('disabled'); // disable them
});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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