Wednesday, March 3, 2010

Loop through table using Jquery

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);
});

 How to generate Model class and DbContext from existing Data Base using .NET Core  Open the Nuget Manage and run the following command Scaf...