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

Beitrag lesen

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