Get innerHTML of a non-identified td

Get innerHTML of a non-identified td

Hello there,

I've a small trouble I can't solve.
Here is an html table I use (I can't change the generated code):
  1. <table>
  2. <tr><th>Lastname</th><th>Country</th></tr>
  3. <tr id="1"><td>Doe</td><td>France</td></tr>
  4. <tr id="2"><td>Dummy</td><td>Russia</td></tr>
  5. </table>
I want to get the country of a selected row, but I don't know how.
I tried:
  1. $('#1').html(); // gives "Doe France"
  2. $('#1').text(); // gives "Doe France"
  3. $('#1 td').text(); //gives "Doe France"
  4. $('#1 td').html(); //gives "Doe"
  5. $('#1 td td').text(); //gives nothing
  6. $('#1 td td').html(); //gives nothing
So, I wonder I've to get the $('#1').html() and split to get the second element ? Or is there another way ?

Thanks by advance.

Regards