Forum Discussion
_anomDiebolt_
8 years agoQrew Elite
That string inside quotes is called the selector. To use multiple selectors you list both using a comma:
$("td.label:has(label.fieldLabel b:contains(PO TOTAL)),
td.label:has(label.fieldLabel b:contains(PO Currency)")
").next("td").wrapInner("<b></b>");
_anomDiebolt_
8 years agoQrew Elite
That is because the PO Currency label is empty as you say. Try this:
Go Team QuickBase!
BTW, this is how doctors learn their skills:
$("td.label:has(label.fieldLabel b:contains(PO TOTAL)),Let me know if it works. I have never used :empty - that's why its worth answering questions! Through our combined efforts we have advanced the great corpus of QuickBase knowledge.
td.label:has(label.fieldLabel b:empty"))
.next("td")
.wrapInner("<b></b>");
Go Team QuickBase!
BTW, this is how doctors learn their skills:
- See One
- Do One
- Teach One