Currently, I am dealing with a table structured like this:
<table width="100%" border="0" cellspacing="0" cellpadding="0" id="tablecontent">
<tr class="tablerow">
<td>This is the td I want to add a class to.</td>
<td class="cell2">Stuff</td>
<td class="cell3">Stuff</td>
</tr>
<tr class="tablerow">
<td>This is the td I want to add a class to.</td>
<td class="cell2">Stuff</td>
<td class="cell3">Stuff</td>
</tr>
</table>
The issue is that the first TD tag in each row does not have a class or ID. Unfortunately, I cannot modify the HTML output directly. My solution involves using jQuery to target the first TD tag of every tablerow. How should I go about implementing this?