lo solucione de esta manera. gracias igual
Código Javascript
:
Ver originalfor (f = 0; f <= 5; f++){
var tr = document.createElement("tr");
tabla.appendChild(tr);
for (c = 0; c <= 5; c++){
var td1 = document.createElement("td");
var td2 = document.createElement("td");
var td3 = document.createElement("td");
td1.setAttribute("width", "5"); td1.setAttribute("height", "5");
td3.setAttribute("height", "5");
if (c == 0 && f == 0) {
tr.appendChild(td1);
}
if (c > 0 && c <= 10) {
tr.appendChild(td2);
}
if (c == 0 && f > 0) {
tr.appendChild(td3);
}
}
}