$('tr').find('td:eq(0)') this will work..
With Regards, Chandan Luthra Intelligrape Software Pvt. Ltd. On Fri, Jan 9, 2009 at 4:04 AM, Mauricio (Maujor) Samy Silva < css.mau...@gmail.com> wrote: > > $('tr > td') // match ALL td's that are children of a tr. > > $('tr td:first-child') // match ONLY td's that are first-child of a tr - > this is the selector Tijmen is asking for. > > Regards, > Mauricio > > > > I believe you have two options: >> > > $('tr>td') >> > > or >> > > $('tr td:first-child') >> >> i've never used first-child myself so i may understand it wrongly.Let me >> know ! >> > >