View Table

View Table

I have a table made up only of colors and just being with jQuery I cannot find away to display it's elements.

    <table width="160" align="center" id="my_table">
         <tbody>
               <tr>
                     <td><img src="assets/Color1.png" width="160" height="40" alt="One"></td>
               </tr>
               <tr>
                     <td><img src="assets/Color2.png" width="160" height="40" alt="Two"></td>
               </tr>
                    ...
      </table>

I do have working that the blocks of colors can be rearranged. And what I will ultimately need to obtain is where each of the colors are within the block, therefore I assume I need to know display the alt name and where within the location of the stack each is. But I have been at this off and on for several days and still cannot find a way just to display anything. Thanks. Rick