Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
HTML:
<table>
<tr><td>Text</td></tr>
<tr><td>Text2</td></tr>
</table>
var values = [];
$('table tr td').each(function(index, val) {
values.push($(val).text());
});
console.log(values);
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question