Hops
<div id="vorhang" visibility="hidden"><applet.....></div>
<layer id="ncvorhang" visibility="hide">
<div id="vorhang" style="visibility:hidden;">
<applet ...>
</div>
</layer>
document.getElementById("vorhang").style.visibility ="visible";
funktioniert mit NS6.2.3 nicht, ebenso
wundert mich ...
document.vorhang.visibility="show" nicht.
wundert mich auch.
Jetzt muß es halt document.ncvorhang.visibility="show" heißen.
Befindet sich der Layer in einem weiteren Layer ?
if(document.all)
document.all.vorhang.style.visibility = "visible";
else
{ if(document.layers)
document.ncvorhang.visibility = "show";
else
document.getElementById("vorhang").style.visibility = "visible"; }
Ciao,
Harry
(http://learn.to/quote)