<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "
http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="content-type" content="text/html; charset=iso-8859-1"><title>Ingen titel</title>
<script type="text/javascript">
if(window.addEventListener)window.addEventListener("load", function(){wload();}, false);
else if(window.attachEvent)window.attachEvent("onload", function(){wload();});
function wload(){
tb=document.createElement("table");
tb.setAttribute("width","200");
tb.setAttribute("height","200");
tbody=document.createElement("tbody");
tbtr=document.createElement("tr");
tbtd=document.createElement("td");
tbtd.setAttribute("width","200");
tbtd.setAttribute("height","200");
tbtd.style.background="#ccc";
tbtdtxt=document.createTextNode("Test");
tbtd.appendChild(tbtdtxt);
tbtr.appendChild(tbtd);
tbody.appendChild(tbtr);
tb.appendChild(tbody);
document.body.appendChild(tb);
}
</script>
</head><body>
</body></html>
eller:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "
http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="content-type" content="text/html; charset=iso-8859-1"><title>Ingen titel</title>
<script type="text/javascript">
if(window.addEventListener)window.addEventListener("load", function(){wload();}, false);
else if(window.attachEvent)window.attachEvent("onload", function(){wload();});
function wload(){
tb=document.createElement("table");
tb.style.width="200px";
tb.style.height="200px";
tbody=document.createElement("tbody");
tbtr=document.createElement("tr");
tbtd=document.createElement("td");
tbtd.style.width="200px";
tbtd.style.height="200px";
tbtd.style.background="#ccc";
tbtdtxt=document.createTextNode("Test");
tbtd.appendChild(tbtdtxt);
tbtr.appendChild(tbtd);
tbody.appendChild(tbtr);
tb.appendChild(tbody);
document.body.appendChild(tb);
}
</script>
</head><body>
</body></html>