Tema: <a href....
Ver Mensaje Individual
  #2 (permalink)  
Antiguo 26/12/2003, 10:04
Avatar de tunait
tunait
Moderadora
 
Fecha de Ingreso: agosto-2001
Ubicación: Terok Nor
Mensajes: 16.805
Antigüedad: 22 años, 8 meses
Puntos: 381
Buenas y felíz ginglebels pa tí también


prueba con algo así, aunque te servidría sólo para la celda


<html>
<body>

<table border="1">
<tr>
<td><a style="display:block"> href="http://www.google.es">enlace</a></td>
</tr>
</table>

</body>
</html>

Si no la alternativa sería en javascript


<html>
<body>

<table border="1" onclick="location.href='http://www.google.es'">
<tr>
<td>enlace</td>
</tr>
</table>
</body>
</html>