I just want to get the cell values from the rows of a column, but I do no want to get the undefined at the start.
I think this undefined is the is the undefined td
in the first tr
of the table.
How do I just get the cell values of the rows from a column (and not the header) of the table?
my current fiddle gets me this in the the console:
undefined
123
456
789
or
undefined
abc
def
ghi
so the answer I would expect is
123
456
789
or
abc
def
ghi
Note Similar question here which has helped get to this point