Hallo,
ich weiss zwar nicht was eine hashtable in HTML ist aber hier habe ein script das dir weiterhilft:
<script language="javascript" type="text/javascript">
<!--
function mkTable(rows, cols){
var tbl=document.createElement("table");
tbl.border="1";
tbl.width="100%";
for(var i=1;i<=rows;i++){
var row=document.createElement("tr");
for(var j=1;j<=cols;j++){
var col=document.createElement("td");
col.innerHTML="TD-Text";
row.appendChild(col);
}
tbl.appendChild(row);
}
// Ausgabe im DIV, ebenfalls mit appendChild(tbl);
}
//-->
</script>
Chu