How can I select values from an html table by rows in JavaScript ?, I have the following function already done but that brings me together all the rows
function iiid(e) {
var iii = "";
$("td").parent("tr").find("td").each(function () {
iii += $(this).html() + ",";
});
return iii;
}