I know that I can get the class name from a table cell if I have the id of the cell, i.e.
scr = document.getElementById(cellid);
classN = scr.className;
However I want to get the class name from a table with potentially 1000+ cells. Can I do this without id'ing every cell?
Any help would be appreciated.
Thanks