hallo zusammen,
ich habe das problem, das mit unten stehendem codeschnipsel die divs über den weiter unten stehenden divs immer transaprent werden. sprich: dort, wo ein link steht, scheint dieser link durch den hintergrund des aufklapp-divs durch. wie kann man das umgehen?
wirsing
<script language="javascript">
<!---
function zeige_inhalt(id,inhalt,y,x)
{
if (document.getElementByID)
{
document.getElementById(id).style.visibility = "visible";
document.getElementById(id).style.top = y;
document.getElementById(id).style.left = x;
document.getElementById(id).style.width = 150;
document.getElementById(id).style.height = 150;
document.getElementById(id).style.value = inhalt;
}
else
{
document.all(id).style.visibility = "visible";
document.all(id).style.top = y;
document.all(id).style.left = x;
document.all(id).style.width = 150;
document.all(id).style.height = 150;
document.all(id).style.value = inhalt;
}
}
function verstecke_inhalt(id)
{
if (document.getElementById)
{
document.getElementById(id).style.visibility = "hidden";
document.getElementById(id).style.top = 0;
document.getElementById(id).style.left = 0;
}
else
{
document.all(id).style.visibility = "hidden";
document.all(id).style.top = 0;
document.all(id).style.left = 0;
}
}
//-->
</script>
<!--- 1. div --->
<tr>
<td valign="top"><a name="bla1859"><img src="http://uk-portal.bank.dresdner.net/images/quadrat.gif"> KuW</td>
<td valign="top"></td>
<td valign="top">
<div id="blubb1859" style="position:relative;z-index:0"><a href="#bla1859" onclick="zeige_inhalt('1859',event.y,event.x)">Denktagebücher Hannah Arendt</a><div id="1859" style="z-index:10;position:absolute;width:0px;height:0px;top:0px;left:0px;visibility:hidden"><table width=100% height=100% style="color:#FFFFFF;background-color:#666666;z-index:20"><tr><td valign=top>Präsentation mit Lesung</td></tr><tr><td valign=bottom align=right><a href="javascript:verstecke_inhalt('1859');" style="color:#FFFFFF;background-color:#666666;font-size:9px;z-index:20">Fenster schließen</a></td></tr></table></div></div></td>
<td valign="top">Dresden/Frankfurt</td>
<td valign="top"></td>
</tr>
<tr>
<td colspan="5"><img src="http://uk-portal.bank.dresdner.net/images/999999.jpg" width="100%" height="1"></td>
</tR>
<!--- ende 1. div --->
<!--- 2. div --->
<tr>
<td valign="top"><a name="bla1859"><img src="http://uk-portal.bank.dresdner.net/images/quadrat.gif"> KuW</td>
<td valign="top"></td>
<td valign="top">
<div id="blubb1859" style="position:relative;z-index:0"><a href="#bla1859" onclick="zeige_inhalt('1859',event.y,event.x)">Denktagebücher Hannah Arendt</a><div id="1859" style="z-index:10;position:absolute;width:0px;height:0px;top:0px;left:0px;visibility:hidden"><table width=100% height=100% style="color:#FFFFFF;background-color:#666666;z-index:20"><tr><td valign=top>Präsentation mit Lesung</td></tr><tr><td valign=bottom align=right><a href="javascript:verstecke_inhalt('1859');" style="color:#FFFFFF;background-color:#666666;font-size:9px;z-index:20">Fenster schließen</a></td></tr></table></div></div></td>
<td valign="top">Dresden/Frankfurt</td>
<td valign="top"></td>
</tr>
<tr>
<td colspan="5"><img src="http://uk-portal.bank.dresdner.net/images/999999.jpg" width="100%" height="1"></td>
</tR>
<!--- ende 2. div --->