Ver Mensaje Individual
  #4 (permalink)  
Antiguo 13/02/2002, 09:51
selu
 
Fecha de Ingreso: enero-2002
Mensajes: 87
Antigüedad: 23 años
Puntos: 0
Re: menu desplegable falla navigator

Este es el código:

<SCRIPT LANGUAGE="JAVASCRIPT">
var cm=null;
document.onclick = new Function("show(null)")
function getPos(el,sProp) {
var iPos = 0
while (el!=null) {
iPos+=el["offset" + sProp]
el = el.offsetParent
}
return iPos

}

function show(el,m) {
if (m) {
m.style.display='';
m.style.pixelLeft = getPos(el,"Left")
m.style.pixelTop = getPos(el,"Top") + el.offsetHeight
}
if ((m!=cm) && (cm)) cm.style.display='none'
cm=m
}
</SCRIPT>

Y luego se va abriendo por capas:

<div ID="d1" onmouseover="show(this,ds1);" class="menu"....