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
$('#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$('#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