nose si sirva pero este ya es el codigo "añadir" con tus arreglos,
Código PHP:
function anadir() {
i = i + 1;
if (i <=9){
var table = document.getElementById('lineaPedido');
var row = table.insertRow(-1);
var cell, text;
for (var j=0; j<9; j++) {
cell = row.insertCell(0);
//text = 'Fila' + row.rowIndex + 'Aux' + i;
//input1 = document.createElement("input");
cell.setAttribute("id","miCol"+ j + "" + i);
if (j==8){
//cell.setAttribute("id","col"+j+""+i);
//cell.innerHTML = document.getElementById("item").value;
}else{
cell.appendChild(document.createTextNode(text));
cell.innerHTML = rText;
}
}
}
}