Estoy haciendo un ejemplo q tengo en un ebook("Ajax for dummies")...el cual se supone que trae lo q contiene un archivo php..el asunto es que no me hace lo q ellos dicen q hace... no me marca errores el editor... pero no hace nada, el codigo es el siguiente:
Código PHP:
<html>
<head>
<script languaje="javascript">
var Ajax= false;
if(window.XMLHttpRequest){
Ajax= new XMLHttpRequest();
}
else if(window.ActiveXObject){
Ajax= new ActiveXObject("Microsoft.XMLHTTP");
}
function getData(datasource,divID){
if(Ajax){
var obj=document.getElementById(divID);
Ajax.open("GET",datasource);
Ajax.onreadystatechange=function(){
if(Ajax.readystate == 4 && Ajax.status == 200){
obj.innerHTML=Ajax.responsetext;
}
}
Ajax.send(null);
}
}
</script>
</head>
<body>
<form>
<input type =submit value = "enseña msg" onclick ="getData('data.php','targetDiv')">
</form>
<div id="targetDiv">
</div>
</body>
</html>
Código PHP:
<?php
echo 'Este texto viajo por ajax';
?>
Haber si alguien me puede ayudar...gracias de antemano