Too loop through table using Jquery, that can also be used to loop nested table/nested structure like, to parse only single table rows just need to change $('#tblPlaceholder > tbody > tr>')
$('#tblPlaceholder > tbody > tr>td >div > table > tbody > tr').each(function() {
var displayedDate = this.cells[1].innerText; //display text of cell
alert(displayedDate);
});
No comments:
Post a Comment