var Rows = $("#tableid tbody tr");
Rows.each(function(index, element) {
var thirdCell = $(this+":nth-child(3)").text();
alert(thirdCell);
});
Something in the var thirdCell
line is not working correctly. Each row has four children, all td tags. I want to get the text inside the third cell.