i have a table like this
<table>
<tr id ='1tr'>
<td><input type='textbox' value='1'></td>
<td><input type='textbox' value='2'></td>
</tr>
<tr id ='2tr'>
<td><input type='textbox' value='3'></td>
<td><input type='textbox' value='4'></td>
</tr>
</table>
how i can get the value of text box in second td that is in tr with id 2tr
Try this code:
New code after your edit in your answer
is what you want?