[jQuery] selector question

[jQuery] selector question


Hi --
I'm trying to hide all the contents from <td>s within a table *except*
for the first <td> in each <tr>... I don't want to hide the <td>s,
just their contents, but I'm having trouble finding the correct
selector(s) to accomplish this.
So, for example, if the table is:
<table>
<tr>
<td>one</td>
<td>two</td>
<td>three</td>
</tr>
<tr>
<td>four</td>
<td>five</td>
<td>six</td>
</tr>
</table>
I'd like to hide the actual *content* "two", "three", "five", and
"six" -- for as many tds there are after the first one in each row,
and for as many rows as there are in the table.
Thanks in advance!
--Carl.