Reputation: 11631
What is the best way to implement the OR statement in a :contains jquery call?
Thanks
Upvotes: 1
Views: 153
Reputation: 723688
The only way is to put two of them together:
$('a:contains(b), a:contains(c)')
Upvotes: 5