I have this code in jQuery:
children(\'table\').children(\'tbody\').children(\'tr\').children(\'td\')
Which gets all table cells for each r
You can use .map: http://jsfiddle.net/9ndcL/1/.
.map
// array of text of each td var texts = $("td").map(function() { return $(this).text(); });