Ver Mensaje Individual
  #8 (permalink)  
Antiguo 21/02/2013, 19:36
Avatar de emprear
emprear
Colaborador
 
Fecha de Ingreso: junio-2007
Ubicación: me mudé
Mensajes: 8.388
Antigüedad: 17 años, 6 meses
Puntos: 1567
Respuesta: actulizar imagen con ajax con php y mysql

Cita:
Iniciado por Reedyseth Ver Mensaje
Para empezar vamos viendo, traes unos errores en tu Javascript:

Código CODE:
Ver original
  1. Uncaught TypeError: Cannot read property 'attachEvent' of null funciones.js:59
  2. 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
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <title>titulo</title>
  5. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  6. <script type="text/javascript">
  7. //<![CDATA[
  8. function mostrar_titulo(t){
  9. alert('title="'+ t.title + '"  href=' + t.href);
  10. }
  11.  
  12.  
  13. window.onload = function(){
  14. var linksmenu = [];
  15. var contiene_links = document.getElementById('menu');
  16. linksmenu = contiene_links.getElementsByTagName('a');  
  17.     for (i=0; i<linksmenu.length; i++) {
  18.         if (linksmenu[i].addEventListener){
  19.         linksmenu[i].addEventListener("mouseover", function(){mostrar_titulo(this)}, false);
  20.         }else{ // <IE9
  21.             if (linksmenu[i].attachEvent){
  22.             linksmenu[i].attachEvent ("onmouseover", function () {mostrar_titulo(this)});
  23.         }  
  24.         }
  25.     }
  26. }
  27. //]]>
  28. </head>
  29. <div id="menu">
  30. <a href="a.html" title="titulo a">a</a><br />
  31. <a href="b.html" title="titulo b">b</a><br />
  32. <a href="c.html" title="titulo c">c</a><br />
  33. </div>
  34. </body>
  35. </html>

SAludos
__________________
La voz de las antenas va, sustituyendo a Dios.
Cuando finalice la mutación, nueva edad media habrá
S.R.