Ver Mensaje Individual
  #3 (permalink)  
Antiguo 20/11/2007, 05:04
Avatar de gorka_arai
gorka_arai
 
Fecha de Ingreso: octubre-2005
Mensajes: 281
Antigüedad: 18 años, 6 meses
Puntos: 1
Re: Menú en Javascript que no se ve en varias versiones de IE

Por supuesto Javier!!!

Estos son los links en mi cabecera:
Código:
<script type="text/javascript" src="Scripts/menuheader.js">
Este es el código de menuheader.js
Código:
startList = function() {
if (document.all&&document.getElementById) {
  navRoot = document.getElementById("nav");
  for (i=0; i<navRoot.childNodes.length; i++) {
	node = navRoot.childNodes[i];
	if (node.nodeName=="LI") {
	  node.onmouseover=function() {
		this.className+=" over";
	  }
	  node.onmouseout=function() {
		this.className=this.className.replace(" over", "");
	  }
	}
  }
}
}
window.onload=startList;