So if I have table:
<table id="someTable">
<tr><td>Key1</td><td>Value1</td></tr>
<tr><td>Key2</td><td>Value2</td></tr>
<tr><td>Key3</td><td>Value3</td></tr>
</table>
Is there a way I can get the "index of the row" of value 2 and store the value "Key2" into a variable. Then using that "index of the row containing value2", I change the "first TD"(or if there were three TD's, get the 3rd TD) of that row to something like "changed key"?
Something like "index of tr" and then specifying "index of td" to change... not sure if that is possible with jquery or javascript.