[jQuery] Best way to select a cell in a table?

[jQuery] Best way to select a cell in a table?

You're right GTG.
I found this out quickly after my post.  I'm using the following:
$('tr:eq(2) td:eq(3)')
which seems to get exactly the one cell I'm looking for.
Just for sake of argument this is a very simple example.  I use variables in my code and I have only one table on the page.  If I had multiple tables this would indeed return multiple elements unless I selected the individual table as well.  At least this is my understanding.
Matt
________________________________________
From: <a href="mailto:jquery-en@googlegroups.com">jquery-en@googlegroups.com</a> [mailto:<a href="mailto:jquery-en@googlegroups.com">jquery-en@googlegroups.com
</a>] On Behalf Of Ganeshji Marwaha
Sent: Friday, August 03, 2007 2:54 PM
To: <a href="mailto:jquery-en@googlegroups.com">jquery-en@googlegroups.com</a>
Subject: [jQuery] Re: Best way to select a cell in a table?
I don't think ur selector is right for selecting the 2nd row, 3rd column.
It most probably is returning you more elements depending on the number of rows u have.
Eg: if you have 3 rows in your table, then it should return, 1 tr and 3 td's each representing the 3rd column in every row.  
I would use $("td:eq(2)", $("tr:eq(1)"))
-GTG