Eventos onMouseOver y onMouseOut

PROBLEMA

  1. Modificar el segundo problema resuelto (las casillas de la tabla que cambian el color cuando ingresamos con el mouse) para permitir llamar mediante hipervínculos a distintos programas que administran web-mail (gmail, hotmail y yahoo)
Solución
Problema 1.


<html>
<head></head>
<body>
<script type="text/javascript">
  function pintar(objeto,col)
  {
    objeto.bgColor=col;
  }
</script>

<table border="1">
<tr>
<td onMouseOver="pintar(this,'#ff0000')" onMouseOut="pintar(this,'#ffffff')">
<a href="http://www.hotmail.com">Hotmail</a>
</td>
<td onMouseOver="pintar(this,'#00ff00')" onMouseOut="pintar(this,'#ffffff')">
<a href="http://www.yahoo.com">Yahoo</a>
</td>
<td onMouseOver="pintar(this,'#0000ff')" onMouseOut="pintar(this,'#ffffff')">
<a href="http://www.gmail.com">GMail</a>
</td>
</tr>
</table>
</body>
</html>	


Retornar al menu