Sorry about the cranky title, here's the example:
<table>
<tr>
<th class="hey-1-aa"></th>
</tr>
<tr>
<th class="hey-2-aa"></th>
</tr>
<tr>
<td class="hey-1-bb"></tr>
</tr>
<tr>
<td class="hey-2-bb"></tr>
</tr>
</table>
Is there any better way to selects all the THs/TRs start with the class prefix "hey-2-", with something less verbose than $('th[class^="hey-2"], td[class^="hey-2"]')?