Hallo Beat,
function clearAll() {
var bgcol=document.bgColor;
var Zelle;
for (i=0; i<<?php echo $i_max_row;?>; i++ ) {
for (c=0; c<<?php echo $i_max_col;?>; c++ ) {
Zelle=document.getElementById(i+','+c);
Zelle.bgColor = bgcol;
Zelle.className = '';
}
}
document.getElementById("txt_Street_Cord").value = '';
}
so sparst du einige Zugriffe auf Objekte. Ich glaube, die IDs sind nicht OK. Sie dürfen nicht mit einer Zahl anfangen.
Gruß, Jürgen