I want to construct a selector that finds empty elements in a required tr. However, I want to ignore inputs that have an expando value required=false
Something like: $("form table").find("[EMAIL PROTECTED]'']").not("[EMAIL PROTECTED]'false']"); Does this look right? I also want to find selects that have a value of "" too. :) Would that be: $("form table").find("tr.required [EMAIL PROTECTED]''],[EMAIL PROTECTED]''],").not("[EMAIL PROTECTED]'false']"); How do you tell the currently selected item in the select? Glen