Link su table, tr o td.

Può capitare di inserire su un tag di una tabella (TABLE – TR – TD) un collegamento ipertestuale, ecco una soluzione:

[code]
<head>
<script type="text/javascript">
var link=true;
</script>
</head>
<body>
<table onmouseover="this.style.cursor=’pointer’" onclick="if (link) window.location =’http://mio sito.it’">
</body>
[/code]

oppure:

[code]<tr onmouseover="this.style.cursor=’pointer’" onclick="if (link) window.location =’http://mio sito.it’">[/code]

oppure:

[code]<td onmouseover="this.style.cursor=’pointer’" onclick="if (link) window.location =’http://mio sito.it’">[/code]