Ver Mensaje Individual
  #2 (permalink)  
Antiguo 28/01/2002, 08:02
bet
 
Fecha de Ingreso: febrero-2001
Mensajes: 292
Antigüedad: 23 años, 3 meses
Puntos: 0
Re: Consulta facil...

Esto es lo que necesitás?
<pre>
&lt;html&gt;
&lt;head&gt;
&lt;title&gt; New Document &lt;/title&gt;
&lt;style type=&quot;text/css&quot;&gt;
a {color:white;text-decoration:none;}
td {background-color: green; color:white;}
&lt;/style&gt;

&lt;script language=&quot;JavaScript&quot;&gt;
&lt;!--
function cambio(item,bg){
item.style.backgroundColor = bg;
}
//--&gt;
&lt;/script&gt;
&lt;/head&gt;

&lt;body bgcolor=&quot;#FFFFFF&quot;&gt;
&lt;table width=&quot;50%&quot;&gt;
&lt;tr&gt;
&lt;td onMouseOver=&quot;cambio(this,'blue');&quot; onMouseOut=&quot;cambio(this,'green');&quot;&gt;
&lt;a href=&quot;#&quot;&gt;Este es un link&lt;/a&gt;&lt;/td&gt;
&lt;td&gt; este es un campo común&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td id=&quot;td1&quot;&gt; este es un campo común&lt;/td&gt;
&lt;td onMouseOver=&quot;cambio(this,'blue');&quot; onMouseOut=&quot;cambio(this,'green');&quot;&gt;
&lt;a href=&quot;#&quot;&gt;Este es un link&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>

<hr noshade size=1 color="#000000"><img src="http://www.gograph.com/Images-8712/ClipArt/cat03.gif" height="50" border=0 align="absmiddle"> <font size="2" face="verdana" color="#000000">bet[/CODE]