Ver Mensaje Individual
  #1 (permalink)  
Antiguo 14/04/2008, 15:31
BeRMaNyA
 
Fecha de Ingreso: febrero-2008
Mensajes: 33
Antigüedad: 16 años, 10 meses
Puntos: 1
-> AHAH (duda)

Código PHP:
<html>
 <
head>
 <
script type="text/javascript">

  function 
ahah(url,target) {
    
document.getElementById(target).innerHTML 'loading data...';
    if (
window.XMLHttpRequest) {
        
req = new XMLHttpRequest();
        
req.onreadystatechange = function() {ahahDone(target);};
        
req.open("GET"urltrue);
        
req.send(null);
    } else if (
window.ActiveXObject) {
        
req = new ActiveXObject("Microsoft.XMLHTTP");
        if (
req) {
            
req.onreadystatechange = function() {ahahDone(target);};
            
req.open("GET"urltrue);
            
req.send();
        }
    }
   }

  function 
ahahDone(target) {
   
// only if req is "loaded"
   
if (req.readyState == 4) {
       
// only if "OK"
       
if (req.status == 200 || req.status == 304) {
           
results req.responseText;
           
document.getElementById(target).innerHTML results;
       } else {
           
document.getElementById(target).innerHTML="ahah error:\n" +
               
req.statusText;
       }
   }
  }
  
</script>
  </head>

  <body>

  <a onclick='ahah("http://google.com","url");' href='#'>Google</a> <br><br>

   <div id='url'> </div>

  </body> 
Ese script se supone q al dar click en el link "Google" cargaria google en la div...
Pero me keda loading data... y no cambia...

El script lo obtube de http://microformats.org/wiki/rest/ahah#Send_AHAH_Request
Pero esta en ingles toda la documentacion no entiendo nah!
Si alguien me pueda explicar muchas grax