Question:Which of the following will get the first column of all tables using jQuery?
A $('table.tblItemTemplate first-child');
B $('table.tblItemTemplate tr:first-child');
C $('table.tblItemTemplate td:first-child');
D $('tabletblItemTemplate td:first-child');
+ AnswerC
+ Report