I have a table that represents a matrix with various columns and rows.  I
use AJAX/JSON to populate the various cells with data.  Not every cell will
contain an item of data and some may have more than one item.

What's the best way to select a specific cell of the table?

If I wanted the 2nd row 3rd cell the following works:
$("tr:eq(1), td:eq(2)")

This is a rather simplistic example but is this better than, say, giving
every cell its own id or is there a completely different method that others
prefer?

Thanks,
Matt Penner

Reply via email to