This is somewhat of a continuation of an earlier question. I have figured out how to use a selector to point to a specific ID and look for a value="", and then fill that with a red background... i.e. -
$('[id^="f04"][value=""]').css('background-color', 'red')
What I need to do now is build on this so it looks at f04, f05, and f06 for value=""... Any ideas on how to write that? I've tried several different ways to no avail.
$('#f04[value=""] #f05[value=""] #f06[value=""]')will return no elements, first because the syntax is wrong (missing a colon before the square brackets) but also because I doubt each next one is a descendant of the previous.forf0?