I have the following code:
<tbody>
<tr class="listing_left">
<td>Info Here</td>
</tr>
<tr class="listing_right">
<td>Info Here</td>
</tr>
</tbody>
It is being pulled dynamically so that is for each product. So if I have 20 products, it shows that code 20 different times for each product.
I need each of those to link to a specific link. I tried wrapping the whole tbody in an anchor and that did not work. I tried wrapping the individual tr's in an anchor and that did not work.
If I wrap each TD in an anchor then that will work but the anchor is only for the specific text, it doesn't expand to the entire TR, which I need.
Any suggestions?