\[code\]document.getElementById("outputDiv").innerHTML = "";document.getElementById("outputDiv").innerHTML += "<table border=1 width=100%><tr>";for(j=1;j<=10;j++){ document.getElementById("outputDiv").innerHTML += "<td align=center>"+String.fromCharCode(j+64)+"</td>";}document.getElementById("outputDiv").innerHTML += "</tr></table>";\[/code\]I want to draw a table using Javascript.So I wrote the code like above.I think it draw one row that has 10 columns, but it doesn't work.Anyone know about this problem???