Raffi: Link um Tabelle...es erscheint kein "Händchen"

Hallo Leute

Ich habe folgendes Problem! Ich muss auf dem Hintergrundbild eines Frames einen gewissen Bereich als Hyperlink markieren. Ich habes jetzt einfach so gemacht: Eine Tabelle und um die Tabelle einen <a href> </a>! Der Link funzt TipTop aber das typische "Händchen erscheint nicht. Sondern nur der normale Pfeil!

Quellcode:

<a href="#" onClick="parent.unten.location='start.htm';parent.oben.location='menu.php'; return false;"><td width="200" height="45"> </td></a>

Was kann ich da machen?

Gruss
Raffi

  1. hi

    Ich habe folgendes Problem! Ich muss auf dem Hintergrundbild eines Frames einen gewissen Bereich als Hyperlink markieren. Ich habes jetzt einfach so gemacht: Eine Tabelle und um die Tabelle einen <a href> </a>! Der Link funzt TipTop aber das typische "Händchen erscheint nicht. Sondern nur der normale Pfeil!

    Quellcode:

    <a href="#" onClick="parent.unten.location='start.htm';parent.oben.location='menu.php'; return false;"><td width="200" height="45"> </td></a>

    Was kann ich da machen?

    zwei möglichkeiten:

    1. <a href="#" onClick="parent.unten.location='start.htm';parent.oben.location='menu.php'; return false;" style="curos:hand; "><td width="200" height="45"> </td></a>

    2. <a href="javascript:parent.unten.location='start.htm';parent.oben.location='menu.php';" onClick="parent.unten.location='start.htm';parent.oben.location='menu.php'; return false;"><td width="200" height="45"> </td></a>

    Fabian

      1. <a href="#" onClick="parent.unten.location='start.htm';parent.oben.location='menu.php'; return false;" style="curos:hand; "><td width="200" height="45"> </td></a>

      Ich denk, du meinst cursor, oder?

      CU
      http://www.yubb.de

      1. hi Phil,

        1. <a href="#" onClick="parent.unten.location='start.htm';parent.oben.location='menu.php'; return false;" style="curos:hand; "><td width="200" height="45"> </td></a>

        Ich denk, du meinst cursor, oder?

        woher weißt du... ? :D

        Fabian
        [cursor:hand;]

        1. Falls es jemand interessiert!

          Hier die Lösung die funzt:

          <td width="200" height="45" onMouseOver="style.cursor='hand';" onClick="parent.unten.location='start.htm';parent.oben.location='menu.php'; return false;"> </a></td>

          1. hi,

            <td width="200" height="45" onMouseOver="style.cursor='hand';" onClick="parent.unten.location='start.htm';parent.oben.location='menu.php'; return false;"> </a></td>

            oh-oh, da machst du aber ein </a> zu was du nie mit <a> aufgemacht hast, wenn du verstehst was ich meine. lass es doch einfach ganz weg.

            tschÖ
            *stefan

  2. Leider hat beides nicht zur Lösung geführt.

    Das händchen erscheint erst nach dem klick und nicht beim mouseover!

    Hier die Seite zum Testen: http://www.klarer-garage.ch/new/

    Der besagte link verbirgt sich unter dem Firmenlogo.

    gruss
    raffi

  3. Hi,

    Ich habe folgendes Problem! Ich muss auf dem Hintergrundbild eines Frames einen gewissen Bereich als Hyperlink markieren. Ich habes jetzt einfach so gemacht: Eine Tabelle und um die Tabelle einen <a href> </a>! Der Link funzt TipTop aber das typische "Händchen erscheint nicht. Sondern nur der normale Pfeil!

    Quellcode:

    <a href="#" onClick="parent.unten.location='start.htm';parent.oben.location='menu.php'; return false;"><td width="200" height="45"> </td></a>

    Welche Sprache soll das sein?
    HTML oder XHTML kann es nicht sein, denn bei HTML kann td nur in tr, aber nicht in a vorkommen.

    Andreas