Entonces, el problema es q todo me funciona bien en IE, pero en firefox no... he probado codigos ya hechos, y los ejecuto tal como los baje, y ni asi!...ya me tiene harto ese error...
Haber si alguien me puede ayudar, o si alguien prueba mi codigo en su firefox.. o algo asi, me seria de gran ayuda..
Código PHP:
<html>
<head>
<script languaje="javascript">
var Ajax;
if(window.XMLHttpRequest){
Ajax= new XMLHttpRequest();
}
else if(window.ActiveXObject){
Ajax= new ActiveXObject("Microsoft.XMLHTTP");
}
function getData(datasource,divID){
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>
<a href="javascript:getData('info.php','targetDiv')";><center><h3><b>Mira la Version Php</h3></b></center> </a>
<center><input type =submit value = "Manda un email" onclick ="getData('correo.html','targetDiv')"></center>
<div id="targetDiv">
</div>
</body>
</html>