Link um Tabelle...es erscheint kein "Händchen"
Raffi
- html
0 Fabian Transchel0 Phil
0 raffi0 MudGuard
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
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
- <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?
hi Phil,
- <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;]
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>
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
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
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