This may sound stupid to y'all jquery practitioners, but i wonder
which method is fastest (recommended) for selecting a cell with a
class in a big table (think like 1000+ rows 100+ columns):

("#tableid tbody tr.rowclass td.cellclass") or is it ("td.cellclass")
or (".cellclass").

And how about if the cell happens to have a unique id:

("#tableid tbody tr#uniquerow td#uniqueid") or just ("#uniqueid")

Philosophically, the question being is it better to put as much detail
as structurally already known by the programmer into the selector or
just anything goes and let jquery handle it as long as it works.

Reply via email to