I have this code in jQuery:
children(\'table\').children(\'tbody\').children(\'tr\').children(\'td\')
Which gets all table cells for each r
I would give your tds a specific class, e.g. data-cell, and then use something like this:
$("td.data-cell").each(function () { // 'this' is now the raw td DOM element var txt = $(this).html(); });