I have the following HTML generated by an ASP.NET repeater:
<table>
<tr>
<td><input type="hidden" name="ItemId" id="ItemId" value="3" /></td>
<td>Terry</td>
<td>Deleted</td>
<td>Low</td>
<td>Jun 21</td>
</tr>
....
rows repeat
....
</table>
How do I select a particular hidden field by value, so that I can then manipulate the columns next to it?
Thanks for any advice..