I have a form in my admin panel and am having a bit of trouble with my references in jQuery.
The form code looks like this:
<div class="full-width">
<label for="file_name-644" >File Name</label>
<span class="relative"><input type="text" name="file_name-644" id="file_name-644" class="full-width" disabled="disabled" value="pic.jpg"/><span ></span></span>
</div>
<div class="full-width">
<label for="name-644" class="required">Name</label>
<span class="relative"><input type="text" name="name-644" id="name" value="" class="full-width name"/><span ></span></span>
</div>
now, as this form can have multiple entries processed at once, the numbers will change on the references (so from 644 to 108 for example). This is created with a php loop.
In jquery i'm using an .each() loop to check that the values are filled. Right now, all I need for validation is non-empty fields for the name. Currently, it looks like this:
$('.name').each(function(index) {
if(!$(this).val()){ctr++;}else{error++;}
});
The variables ctr and error are counters that I later use to point out errors or how many entries are ready to be processed.
What I want to add to this is a change to the label for just the entries that are empty so that these stand out. I know I can change all of them with
$('.required').css({'color': '#AB1414'});
but how can I do this in the .each() loop above and just for the empty values?
Thanks in advance!
class="full-width name"- it's there. Also the unnecessary span is actually used for something else w/javascript so needs to be there in this instance. thanks – TH1981 Jan 16 '11 at 17:39