Hi.
In einer Tabelle habe ich eine Zelle ohne Inhalt, welche einen Link enthält. Ich möchte das dieser Link zu einen anderen Frame geht. Habe schon mehrmals rumprobiert target=frame einzufügen wie im HTML, aber es hat nicht geklappt. Kann mir da jemand helfen?
Zitat:
Zitat von developr Du meinst, die komplette leere Zelle zu verlinken? Sollte mir Java-Script funktionieren. Code: onclick="javascript:window.location.href='http://google.de'" Beispiel: HTML-Code: <style>
td { empty-cells: show; }
td.link { background-color:red; cursor:pointer; }
</style>
<table border="1" width="400" height="600">
<tr>
<td></td>
<td></td>
<td class="link" onclick="javascript:window.location.href='http://google.de'"></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</table> |