DirtyWorld: imagemap+beschreibung (alt, longdesc, ect.)

Beitrag lesen

Ich habe inzwischen eine Antwort hierzu gefunden, wenns interesiert hier der Quelltext:

<html>
<head>
    <style type="text/css">
      .tool{ background-color:#efefef;
             position:absolute;
             z-index:2;
             padding:5px;
             border:1px solid black;
             width:200px;
             display:none;
             left:15px;
      }
    </style>
    <script type="text/javascript">
    function  show(x){
      document.getElementById(x).style.display = 'block';
    }

function  hide(x){
      document.getElementById(x).style.display = 'none';
    }
    </script>
</head>
<body>
1<br>
2<br>
3<br>
<a href="#" onmouseover="show('1')" onmouseout="hide('1')">Dein Link 1</a>
<div id="1" class="tool">Dein Text zu Link 1</div><br>
4<br>
5<br>
6<br>
<a href="#" onmouseover="show('2')" onmouseout="hide('2')">Dein Link 2</a>
<div id="2" class="tool">Dein Text zu Link 2</div><br>
</body>
</html>