Grab Text From First TD From Dynamic Table??

Grab Text From First TD From Dynamic Table??

Hey Guys,

I built an inventory list by pulling in data from a database and placing it in a table. I built it so that the user can add, edit and delete inventory items. The first TD is the items name. I want to grab that specific name for that row item and place it in another TD. I want to use jQuery for this. Would i have to loop through that table and find the first TD of every row?
  1. <table>
  2.       <tr>
  3.             <td class="name">Name of item</td>
  4.       <tr>
  5.       <tr>
  6.             <td class="description">Description of item</td>
  7.       <tr>
  8.       <tr>
  9.             <td class="addName">Add name of item here using jQuery</td>
  10.       </tr>
  11. </table>
Any help would be appreciated.

Thanks,
stalwil