aki esta, jo, soy muy novatillo, gracias!!!
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){
text = "";
cell.setattribute("id","col"+j+""+i); //segun mi estupida manera de entender con esto y lo de abajo debe funcionar no? pero no...
cell.innerHTML = document.getElementById( "item" ).innerHTML; //esta linea ya la tenia vez?
cell.appendChild(document.createTextNode(text));
cell.innerHTML = "<button onclick=\"deleteRow(this)\">"+row.rowIndex+"</button>";
}else{
cell.appendChild(document.createTextNode(text));
}
}
}
}