Z
Z
zdiii2016-01-30 19:34:44
HTML
zdiii, 2016-01-30 19:34:44

How to parse data from an HTML table using JS?

How to parse data from an HTML table using JS?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
V
Vitaly Vitaly, 2016-01-30
@zdiii

HTML:

<table>
<tr><td>Text</td></tr>
<tr><td>Text2</td></tr>
</table>

jQuery (js):
var values = [];
$('table tr td').each(function(index, val) {
  values.push($(val).text());
});

console.log(values);

Get an output array with text, text2

D
Dvorak, 2016-01-30
@allishappy

var text=[];
  var tr=$('tr');
  for (var i=0; i<tr.length; i++) {
    text[i]=tr.eq(i).children().eq(0).text();
  }

  console.log(text);

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question