Die Funktion um das DIV unsichtbar zu machen:
function oeffnen() {
document.getElementById('laden').style.visibility = "hidden";
}
Der Body, der beim fertigen Laden das DIV unsichtbar machen soll:
<body id="seite" topmargin="10" leftmargin="10" bgcolor="#E7E7E7" onload="oeffnen();">
Das DIV selbst, was von Anfang an sichtbar ist:
<div id="laden" style="position:absolute;top:10px;left:10px;visibility:visible;z-index:2;">
<table border="0" cellpadding="0" cellspacing="0" width="980" height="700" id="preloader2">
<tr>
<td bgcolor="#E7E7E7" width="100%" height="100%" align="center" valign="center" id="preloader1"><img src="images/bg_laden.gif"></td>
</tr>
</table>
</div>
Das Select, was sich trotz niedrigerem z-index vor das DIV schiebt:
<select name="ordner" style="border:1px;border-color:#7F9DB9;border-style:solid;width:160;height:21;font-size:8pt;font-family:verdana;z-index:1">
<option>test</option>
<option>test2</option>
</select>
Ich hoffe, dass es jetzt mir Groß- und Kleinschreibung besser war^^