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.

I have been using this code to iterate through form elements and until now it has worked flawless:

$(document).ready(function() {
    $(':input', '#myform').each(function() {
            alert('test');
            $(this).attr('disabled', 'disabled');
    });         
});

But on this new form it does not work, even though the form is almost the same as the others, it's too big to put it all here though. If I try this code, one messagebox pops up, if I set the alert() to show the name of $(this), it shows the form name...

$(document).ready(function() {
      $('#myform').each(function() {
        alert('test');
      });
});


<form id="myform" name="myform" method="POST">
....

Any idea why this happens? Thank you

share|improve this question
3  
Have you considered simplifying things to $('#myForm :input').prop('disabled', true);? Oh, and you don't have to put it all here, just a representative sample that reproduces your problem. Think 'SSCCE, (short, self-contained, correct/compilable example).' – David Thomas Jan 16 at 15:59
You don't need to iterate through a selection to call a method on each selected element. calling that method on the selection itself has the same effect – Rune FS Jan 16 at 16:01
.each is function for arrays. use it on children of the form – pbibergal Jan 16 at 16:01
Doing $('#myform') will only match one element (because it's an ID selector), so the .each() iteration will only occur once. – Anthony Grist Jan 16 at 16:02

1 Answer

You used the id selector of form and you would have single form with id myform, that is why you have one alert showing up because selector gives one element. To select all the input element with a form use form id with descendant selector.

$(document).ready(function() {
      $('#myform :input').each(function() {
        alert('test');
        $(this).attr('disabled', 'disabled');
      });
});

Edit: If you just want to only disable the inputs then as Rune Fs said use.

$('#myform :input').àttr('disabled', 'disabled')
share|improve this answer
or just $('#myform :input').àttr('disabled', 'disabled') – Rune FS Jan 16 at 16:02
Thanks Rune FS. – Adil Jan 16 at 16:06

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.