i have a table
<table>
<tr>
<td class="myA">Data...1a</td>
<td class="myA">Data...2a</td>
<td class="myA">Data...3a</td>
</tr>
<tr>
<td class="myB">Data...1b</td>
<td class="myB">Data...2b</td>
<td class="myB">Data...3b</td>
</tr>
<tr>
<td class="myC">Data...1c</td>
<td class="myC">Data...2c</td>
<td class="myC">Data...3c</td>
</tr>
</table>
that have we often: data is separated not in one row and their columns it is often that data is in different rows but in same td positions (because connected data should written among themselves)
so i thought if i have the index it is possible to get a class filter and .get(theIndex) on each tr-row to extract the data from the td individual
but is there an easy way? -> i'dl like to extract the data which belongs together in one step -> and afterwards maybe it is in one array/jquery set?!
any idea?! (i do not can add ids etc - i only have the index of the td and the classNames)