How To Select Specific Data (TD) from Rows

How To Select Specific Data (TD) from Rows

I need to select all of the languages from the following table using jQuery. The output should be Java, Ruby, Smalltalk, C++. What statement would I used. Thanks
  
  
<table id="languages" border="0" cellspacing="1">
  <thead>
    <tr>
      <th>Language</th>
      <th>Type</th>
      <th>Invented</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Java</td>
      <td>Static</td>
      <td>1995</td>
    </tr>
    <tr>
      <td>Ruby</td>
      <td>Dynamic</td>
      <td>1993</td>
    </tr>
    <tr>
      <td>Smalltalk</td>
      <td>Dynamic</td>
      <td>1972</td>
    </tr>
    <tr>
      <td>C++</td>
      <td>Static</td>
      <td>1983</td>
    </tr>
  </tbody>
</table>



  1. <table id="languages" border="0" cellspacing="1"> <thead> <tr> <th>Language</th> <th>Type</th> <th>Invented</th> </tr> </thead> <tbody> <tr> <td>Java</td> <td>Static</td> <td>1995</td> </tr> <tr> <td>Ruby</td> <td>Dynamic</td> <td>1993</td> </tr> <tr> <td>Smalltalk</td> <td>Dynamic</td> <td>1972</td> </tr> <tr> <td>C++</td> <td>Static</td> <td>1983</td> </tr> </tbody> </table>