Ver Mensaje Individual
  #2 (permalink)  
Antiguo 29/10/2004, 13:35
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 2 meses
Puntos: 772
Hola kriztian.

Respuesta llegando...
Código HTML:
<html>
<head>
<script>
function mostrar(val) {
	document.getElementById('texto').style.visibility=val;
}
</script>
</head>
<body>
<table>
<tr>
<td><img src="imagen1.gif" onmouseover="mostrar('visible')" onmouseout="mostrar('hidden')"></td>
<td><span id="texto" style="visibility:hidden">Este es el texto</span></td>
</tr>
</table>
</form> 
</body>
</html> 
Saludos,