Rolando
Rolando

Reputation: 62704

How to check if a TR contains a TD with a specific CSS class with jquery?

I know you can use .find to find td:contains('text'), but if I have a tr with say, 3 td's, and one of the td's might have class="specialclass someotherclass" (may potentially have other classes in addition to special class), how do I use jquery to check if a TR contains a TD of specialclass?

Upvotes: 14

Views: 37967

Answers (2)

dtbarne
dtbarne

Reputation: 8210

if ($("tr").has("td.specialclass").length > 0) {
    // has specialclass
}

or

if ($("tr:has(td.specialclass)").length > 0) {
    // has specialclass
}

Upvotes: 8

BoltClock
BoltClock

Reputation: 724462

To select any tr that has a td.specialclass:

$('tr:has(td.specialclass)')

Or if you have a tr (represented by this) and you simply want to check if it has such a td:

if ($(this).find('td.specialclass').length)

Upvotes: 33

Related Questions