As you would to place a row in a table that is armed in the following way:
<table cellpadding="0" cellspacing="0" border="0" style="width:740px !IMPORTANT; overflow:scroll; border:1px solid #FF6600;" class="display2">
<tr style="background:yellow">
<td align="center">9045</td>
<td style="padding:2px 6px; width:15%; text-align:center;" class="jugador6275">Sr contreras</td>
<td align="center">
<table class="puntos">
<tr>
<td align="left" style="padding-right:14px;border-width:1px; width:50%; border:none;"><b style="font-size:14px"> 5</b></td>
<td align="right" style="padding-left:14px; width:50%; border:none; "><span style="color:blue">3</span></td>
</tr>
</table>
</td>
<td align="center">
<table class="puntos">
<tr>
<td align="left" style="padding-right:14px;border-width:1px; width:50%; border:none;"><b style="font-size:14px"> 8</b></td>
<td align="right" style="padding-left:14px; width:50%; border:none; "><span style="color:blue">3</span></td>
</tr>
</table>
</td>
<td align="center">
<table class="puntos">
<tr>
<td align="left" style="padding-right:14px;border-width:1px; width:50%; border:none;"><b style="font-size:14px"> 5</b></td>
<td align="right" style="padding-left:14px; width:50%; border:none; "><span style="color:red">0</span></td>
</tr>
</table>
</td>
<td align="center">
<table class="puntos">
<tr>
<td align="left" style="padding-right:14px;border-width:1px; width:50%; border:none;"><b style="font-size:14px"> 3</b></td>
<td align="right" style="padding-left:14px; width:50%; border:none; "><span style="color:blue">3</span></td>
</tr>
</table>
</td>
<td align="center">
<table class="puntos">
<tr>
<td align="left" style="padding-right:14px;border-width:1px; width:50%; border:none;"><b style="font-size:14px"> 5</b></td>
<td align="right" style="padding-left:14px; width:50%; border:none; "><span style="color:red">0</span></td>
</tr>
</table>
</td>
<td align="center">
<table class="puntos">
<tr>
<td align="left" style="padding-right:14px;border-width:1px; width:50%; border:none;"><b style="font-size:14px"> 8</b></td>
<td align="right" style="padding-left:14px; width:50%; border:none; "><span style="color:blue">1</span></td>
</tr>
</table>
</td>
<td align="center" style="color: #fff; background:#0099FF;"><b style="color: #fff; font-size:13px">10</td></b></tr>
<tr>
</table>
the result is the following:
I want to locate the row based on the result of the first column, which in this case is 9045 but it can be another. I usually place them with document.getElementById adding an id to each row, but this table is armed with a query from the database and I can not modify it. What I'm looking for is to locate a series of elements to paint the rows related to the user I entered.