24.06.2007, 00:35
Code:
<script language="javascript">
currentShownDiv = "";
function klapp(id)
{
currentShownObj = document.getElementById(currentShownDiv);
if (currentShownObj != null)
currentShownObj.style.display='none';
if (id == currentShownDiv)
{
currentShownDiv = "";
return;
}
currentShownDiv = id;
objToShow = document.getElementById(id);
if (objToShow.style.display == 'none')
{
objToShow.style.display='block';
}
else
{
objToShow.style.display='none';
}
}
</script>
</head>
<body>
<a href="javascript:void(0);" onclick="klapp('1');" onfocus="blur();">MENÜ 1</a><br /><br />
<div id="1" style="display:none;">
- UNTERPUNKT<br />
- UNTERPUNKT<br />
- UNTERPUNKT<br />
- UNTERPUNKT<br />
</div>
<a href="javascript:void(0);" onclick="klapp('2');" onfocus="blur();">MENÜ 2</a><br /><br />
<div id="2" style="display:none;">
- UNTERPUNKT<br />
- UNTERPUNKT<br />
- UNTERPUNKT<br />
- UNTERPUNKT<br />
</div>
<a href="javascript:void(0);" onclick="klapp('3');" onfocus="blur();">MENÜ 3</a><br /><br />
<div id="3" style="display:none;">
- UNTERPUNKT<br />
- UNTERPUNKT<br />
- UNTERPUNKT<br />
- UNTERPUNKT<br />
</div>
</body>
Der geht hab ich auf Arbeit gemacht. bitte. chlaf: