get all td of a tr jquery code example
Example 1: jquery get td value
$(".item-model-number .value").each(function() {
var value = $(this).text();
console.log(value);
})
/* <table>
<tr class="item-model-number">
<td class="label">Item model number</td>
<td class="value">GL552VW-CN426T</td>
</tr>
</table> */
Example 2: jquery grab table row
$('.itemTable').eq(2);
//this will grab the 3rd row of the table with the class itemTable