Get the Specific Row from a Table.

Get the Specific Row from a Table.


Hi All,
I am new to jquery framework, I have a problem related to jquery,
Please some one help me out.
I have a table and inside a table I have some rows, Table have a
specific ID and TR also have an ID.
I have to find a TR with specified ID, and all its TD child.
For Eg.
<table id='table1'>
<tr id='row1'>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
<tr id='row2'>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
</table>
I have to find the TR with ID = row1 in table with ID=table1.
Can any one please let me know the solution.
Thanks in advance
Raj