I have a table, like below, and I want to add an event of the click of any tr with the class = hover.
Before the need to include the hover class, this worked: $('#delegation tbody tr')
; now, I feel like I've tried placing .hover
in every imaginable location within that selector, but can't seem to get it.
<table id="delegation">
<tbody>
<tr class="hover">
<td>
</td>
</tr>
<tr>
<td>
</td>
</tr>
</tbody>