Stefan D.: Image-Map & Statuszeilentext

Hallöchen allerseits,

ich hätte da gerne mal'n Problem: Ich habe da eine Grafik mit Image-Maps "gemschmückt" (kann man's so ausdrücken?). Nun wollte ich noch 'n bißchen Statuszeilen-Text an entsprechenden Stellen ändern wenn man mit der Maus drüber ist. Nur irgendwie klappt's nicht in gewohnter Form.

Der aktuelle Quelltext (Auszug):

[blabla]
<map name="karte">
<area shape="rect" coords="167,246,202,268" href="#" alt="bla" title="bla">
[noch mehr davon]
</map>
<img src="../grafik/anfahrt/karte.jpg" border="0" alt="" width="500" height="359" usemap="#karte">
[blabla]

Der übliche(?) Weg:

[blabla]
<map name="karte">
<area shape="rect" coords="167,246,202,268" href="#" onmouseover="status='bla Status';return true;" alt="bla" title="bla">
[noch mehr davon]
</map>
<img src="../grafik/anfahrt/karte.jpg" border="0" alt="" width="500" height="359" usemap="#karte">
[blabla]

Danke schon mal

Stefan

  1. Hallo,

    Der übliche(?) Weg:

    [blabla]
    <map name="karte">
    <area shape="rect" coords="167,246,202,268" href="#" onmouseover="status='bla Status';return true;" alt="bla" title="bla">
    [noch mehr davon]
    </map>
    <img src="../grafik/anfahrt/karte.jpg" border="0" alt="" width="500" height="359" usemap="#karte">
    [blabla]

    setTimeout() hilft:

    <area shape="rect" coords="167,246,202,268" href="#" onmouseover="setTimeout('window.status='bla Status'',0);return true;" onmouseout="setTimeout('window.status=''',0);return true;" alt="bla" title="bla">

    MfG, Thomas

    1. setTimeout() hilft:

      <area shape="rect" coords="167,246,202,268" href="#" onmouseover="setTimeout('window.status='bla Status'',0);return true;" onmouseout="setTimeout('window.status=''',0);return true;" alt="bla" title="bla">

      Dankeeeeeeeeeeeeeee, ich weiß schon warum JS und ich niemals wirkliche Freunde werden ...

      Aber: was ich halt nicht verstehe: wieso geht's bei 'nem "normalem" Link und nicht da?

      Gruß

      Stefa