Michael: Tabellenzellenlink in einem neuen Fenster öffnen

Beitrag lesen

<table>
 <tr>
  <td 'hier das omouseover/out-gedöns'><a target="_blank" href="http://www.google.de/">Google</td>
 </tr>
</table>

Schon aber dann funktioniert der Link nur über der Schrift und nicht über dem Rest der Tabelle :

<TABLE width="100%" border=1>
 <tr>
  <TD class=row2
onmouseover="this.style.backgroundColor='#EFEFEF'; this.style.cursor='hand';"
onmouseout='this.style.backgroundColor="#DEE3E7"' width="100%">
<a target="_blank" href="http://www.google.de/">Google</a></td>
 </tr>
</table>

Und dies war ja gerade das was ich wollte.

Michael