How to add text on first td when click <a> tag inside other td...

How to add text on first td when click <a> tag inside other td...

Hi All
   I am trying to make a shopping site and when a user click "add to cart" button, a "this item has been added" text will show up next to the product title. 
My html code
  1. <div id="product">
  2.   <table width="594" border="0" cellpadding="5" cellspacing="0">
  3.     <tr>
  4.                      <td><img src="<?php echo "$brandImage"; ?>" width="100" height="40"/></td>
  5.          <td colspan="3" valign="middle"><strong><?php echo $productName; ?></strong> //place to show the text "item is in the cart"
  6. </td>
  7.                     </tr>
  8.     <tr>       
  9. <td><img src="<?php echo $productThumb; ?>" width="180" height="135"></td>

  10. <td width="303" align="left" valign="top"><ulid="feature">Feature...</td>
  11.                  
  12.  <td> <a href="productDisplay.php?productId=<?php echo $productId;?>">
  13. <img src="images/iconBullet.jpg" width="10" height="18"> View Detail</a><br>
  14.         <span id="wasPrice"><?php echo $productPriceWas; ?></span>
  15.         //button to click
  16.  <a id="addToCart" href="javascript:void(0);" onclick="addToCart()">
  17. <img src="images/addToCart.gif" alt="add To Cart"/><a/>     
  18. </td>
  19.                  </tr>
  20.   </table>
  21. </div>
I use this jquery code but it only works on the first table (My code generates 1 item per table from mysql). The second and the third one is not working. Here is my Jquery

  1. $(document).ready(function(){
  2. $("#addToCart").click(function(e){
  3. $(e.target).parent().parent().parent().parent().find("td:eq(1)").append(" hohoho");
  4. });
  5. });
I want the text only append once on every table (for different product). I would really appreciate it if someone enlighten me......Thanks!