me sirve pero no consigo adaptarlo...
he conseguido adaptar el codigo pero me da un error... al intentar abrir el link... me dice q se requiere un objeto en la linea 20 y la linea 20 es la 3era funcion.
De javascript no domino mucho... aver si me podeis echar una mano...
Código HTML:
<script>
var pepe=null; //***
function mano(cual){
document.body.style.cursor='hand';
cual.style.backgroundColor='#0A81CA';
};
function flecha(cual){
document.body.style.cursor='default';
cual.style.backgroundColor=(cual==pepe)?'red':'#CCCCCC';
}
function abrir(pag,e){
elemento = document.getElementById(e);
if (pepe){pepe.style.backgroundColor='#0A81CA';}
pepe = elemento; //***
elemento.style.backgroundColor = 'red';
parent.main.location.href=pag;
}
</script>
...
<td>
<div id="noticia" STYLE="background:#CCCCCC" name="noticia" OnMouseOver="mano(this)" onmouseout="flecha(this)" onClick="abrir('noticia.php','perico')">Puntos de Venta</div>
</td>
Gracias por todo