How can I write in a table <td>
using Javascript with document.getElementById("Table").rows[i].cells[j]
? Or any other possible ways?
I want to write stuff into the <td></td>
with javascript.
I used this code for the first part, but when I reused it, it didn't work. If it helps, the table was generated with javascript:
var cell = document.createElement("td");
var cellText = document.createTextNode(i+j);
cell.appendChild(cellText);