Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

is there a way to disable all fields (textarea/textfield/option/input/checkbox/submit etc) in a form by telling only the parent div name in jquery/javascript?

share|improve this question
3  
Note that by doing this you cause the values of those elements to "disappear" when submitting the form - to preserve the value make them readOnly, not disabled. – Shadow Wizard Mar 13 '11 at 16:20

3 Answers

up vote 35 down vote accepted

Try using the :input selector, along with a parent selector:

$("#parent-selector :input").attr("disabled", true);
share|improve this answer
can i use this to set all inputs inside div to value 0? – theatomicdude Jan 4 '12 at 7:59
I want to disable <a> also... My <a> has onclick too – RAJ ... Jul 30 '12 at 7:59
Citing jQuery: Because :input is a jQuery extension and not part of the CSS specification, queries using :input cannot take advantage of the performance boost provided by the native DOM querySelectorAll() method. To achieve the best performance when using :input to select elements, first select the elements using a pure CSS selector, then use .filter(":input"). – acme Sep 12 '12 at 8:16
@acme: Agree 100% but the question doesn't give any hints as to what selector I could possibly filter on. The only information I was given was that the user must be able to do it with a parent div name and that's it. If given more information I could have come up with a more efficient solution. – Andrew Whitaker Sep 12 '12 at 14:22
You're right - I just wanted to mention this for the sake of completeness. Though I guess the performance boost comes only into play with lots of form fields. – acme Sep 12 '12 at 14:29
$('#mydiv').find('input, textarea, button, select').attr('disabled','disabled');
share|improve this answer
You forgot , 'select' :) – Shadow Wizard Mar 13 '11 at 16:15
Good call! :) Thanks. – Trevor Mar 13 '11 at 16:16
1  
it should be ('input, textarea, button') all selectors should be quoted with one set of quotes. api.jquery.com/multiple-selector Doing it your way you are sending multiple arguments. – Ivan Ivanić Mar 13 '11 at 16:16
1  
This will only find you inputs, ignoring textareas and buttons. The :input selector is the way to go, but if you wanted to list them explicitly, you would need to use $('#mydiv').find('input, textarea, button'). – Mark Hildreth Mar 13 '11 at 16:19
    $(document).ready(function () {
        $('#chkDisableEnableElements').change(function () {
            if ($('#chkDisableEnableElements').is(':checked')) {
                enableElements($('#divDifferentElements').children());
            }
            else {
                disableElements($('#divDifferentElements').children());
            }
        });
    });

    function disableElements(el) {
        for (var i = 0; i < el.length; i++) {
            el[i].disabled = true;

            disableElements(el[i].children);
        }
    }

    function enableElements(el) {
        for (var i = 0; i < el.length; i++) {
            el[i].disabled = false;

            enableElements(el[i].children);
        }
    }
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.