Mi problema es el siguiente:
Tengo una tabla con la función MouseOver, que cuando el puntero pasa por encima cambia el color del texto. El problema es que al poner un vínculo, me quita todas las propiedades antes establecidas. He tratado de cambiar de lugar el a href, pero no da resultado.
Alguien sabe como puedo hacerlo?
Dejo debajo el código para que lo entendaís mejor.
Muchas gracias de antemano.
Cita:
Código:
<html>
<link href="../../../../estilos/donde/resaltado.css" rel="stylesheet" type="text/css">
<script type="text/javascript">
<!--
function MM_changeProp(objId,x,theProp,theValue) { //v9.0
var obj = null; with (document){ if (getElementById)
obj = getElementById(objId); }
if (obj){
if (theValue == true || theValue == false)
eval("obj.style."+theProp+"="+theValue);
else eval("obj.style."+theProp+"='"+theValue+"'");
}
}
//-->
</script>
<head>
<title>codigo</title>
<style type="text/css">
</style>
</head>
<body bgcolor="#EFE7C1">
<table width="200" border="1">
<tr>
<td class="resaltado" id="celda1" onMouseOver="MM_changeProp('celda1','','color','re d','TD')" onMouseOut="MM_changeProp('celda1','','color','#37 3736','TD')">Inicio</a></td>
</tr>
</table>
</div>
</body>
</html>
<html>
<link href="../../../../estilos/donde/resaltado.css" rel="stylesheet" type="text/css">
<script type="text/javascript">
<!--
function MM_changeProp(objId,x,theProp,theValue) { //v9.0
var obj = null; with (document){ if (getElementById)
obj = getElementById(objId); }
if (obj){
if (theValue == true || theValue == false)
eval("obj.style."+theProp+"="+theValue);
else eval("obj.style."+theProp+"='"+theValue+"'");
}
}
//-->
</script>
<head>
<title>codigo</title>
<style type="text/css">
</style>
</head>
<body bgcolor="#EFE7C1">
<table width="200" border="1">
<tr>
<td class="resaltado" id="celda1" onMouseOver="MM_changeProp('celda1','','color','re d','TD')" onMouseOut="MM_changeProp('celda1','','color','#37 3736','TD')">Inicio</a></td>
</tr>
</table>
</div>
</body>
</html>