Irgendwie wolte vorhin FF-Fehlerkonsole "was" definiert haben, jetzt auf einmal nicht mehr.
Jetzt ist es sogar VALIDE *Freudesprünge macht*
Sollte ich demnächst Berlin besuchen *schielt auf den 5 Juni*
dann spendiere ich dir ein Bier *g*
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Felder des Grauens</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" >
<style type="text/css">
#feld1 {
width: 200px; height: 200px;
position:absolute; top:100px; left:100px;
background-color: red;
}
#feld2 {
width: 200px; height: 200px;
position:absolute; top:200px; left:200px;
background-color: green;
}
</style>
<script type="text/javascript">
function vor (was) {
var i;
for (i=1; i<3;i++)
{ var node=document.getElementById("feld"+i);
node.style.zIndex = "1";
}
was.style.zIndex = "2";
}
</script>
</head>
<body>
<div id="feld1" onmouseover="vor(this)"></div>
<div id="feld2" onmouseover="vor(this)"></div>
</body>
</html>