<tr class=“child”>…
$(‘.child’) works fine and selects all elements with class “child”
<tr class=“child del”>
$(‘.child)’ does not work and selects nothing
How can I fix this and select the elements in case of multiple classes? Is there something as a wild card to select any elements containing “child” as one of the classes?
You must be doing something else wrong. jQuery does support multiple classes (look here: http://jsbin.com/ahaxe/edit). Can we see some more of your code?