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", url, true);
req.send(null);
} else if (window.ActiveXObject) {
req = new ActiveXObject("Microsoft.XMLHTTP");
if (req) {
req.onreadystatechange = function() {ahahDone(target);};
req.open("GET", url, true);
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