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.
<tr>
    <td class="cat" CategoryId="8">NoChange*: </td>
    <td><span class="itm" CategoryId="8">A</span></td>
</tr> 
<tr>
    <td class="cat" CategoryId="9">Row should be red*: </td>
    <td></td>
</tr> 
<tr>
    <td class="cat">Comments:</td>
    <td><span class="itm"></span></td>
</tr>​

I want to set Validation for Category which does not have items in it. For category 8 it has one value associated hence there is no need to show required where as 9 does not have any item associated with it.hence its tr color should be set to red. Also comment should be ignored altogether as it is not having any categoryid as such. I m trying to set it as

$("tr.cat~tr.itm").children(":not(:has(td))").css("color","red")
share|improve this question

2 Answers

This will select :empty <td> elements that are preceded by a <td class="cat">.

Then it traverses back to the .prev() element and changes the color.

Try it out: http://jsfiddle.net/4DN6Q/1/

$("td.cat + td:empty").prev('td.cat').css("color","red");
share|improve this answer

Check jQuery validation plugin.

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.