sorry,
aber das war nicht die frage.
ich sagte ja, die beiden funktionen l_a_u_f_e_n! man braucht keine {} wenn's nur um eine anweisung geht (steht zwar nicht in self-html, aber an anderer stelle).
mein problem ist die For...Next - schleife!!! da stimmt was nicht.
trotzdem danke für die nachricht
matthias
Hallo Matthias!
function showLayer(x){
if (document.layers)
document.layers[x].visibility="show";
else
document.all[x].style.visibility="visible";
}
function showLayer(x){
if (document.layers) {
document.layers[x].visibility="show";
}
else {
document.all[x].style.visibility="visible";
}
}
function hideLayer(x){
if (document.layers)
document.layers[x].visibility="hide";
else
document.all[x].style.visibility="hidden";
}
function hideLayer(x){
if (document.layers) {
document.layers[x].visibility="hide";
}
else {
document.all[x].style.visibility="hidden";
}
}
Man beachte die '{' und '}'
;)
Gruß Julian