Cita:
Iniciado por Reedyseth Para empezar vamos viendo, traes unos errores en tu Javascript
:
Código CODE:
Ver originalUncaught TypeError: Cannot read property 'attachEvent' of null funciones.js:59
Uncaught ReferenceError: cargarHoroscopo is not defined funciones.js:19
Veririca que estes creando bien tus variables y que se creen en el scope correcto, posiblemente 'attachEvent' le haces referencia a un nodo que no estas referenciando bien, checalos por favor.
Si, más o menos el error pasa por ahi, de todas formas creo que se está complicando la vida, agrega un evento a window, cuando creo deberia hacerlo a window.document, y a su vez este dispara una función que vuelve a llamar a la función que agrega eventos, esta vez para agregarlos a los links... seguramente se está perdiendo en algún parámetro.
Ahora, y eso es lo que se observa del html, lo que quiere es agregarle un evento a todos los links dentro de un contenedor específico (div#menu), yo sencillamente haría lo siguiente
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <script type="text/javascript"> //<![CDATA[
function mostrar_titulo(t){
alert('title="'+ t.title + '" href=' + t.href);
}
window.onload = function(){
var linksmenu = [];
var contiene_links = document.getElementById('menu');
linksmenu = contiene_links.getElementsByTagName('a');
for (i=0; i<linksmenu.length; i++) {
if (linksmenu[i].addEventListener){
linksmenu[i].addEventListener("mouseover", function(){mostrar_titulo(this)}, false);
}else{ // <IE9
if (linksmenu[i].attachEvent){
linksmenu[i].attachEvent ("onmouseover", function () {mostrar_titulo(this)});
}
}
}
}
//]]>
<a href="a.html" title="titulo a">a
</a><br /> <a href="b.html" title="titulo b">b
</a><br /> <a href="c.html" title="titulo c">c
</a><br />
SAludos