function recarga()
{
var xmlhttp;
if (window.XMLHttpRequest)
{
xmlhttp=new XMLHttpRequest();
}
else if (window.ActiveXObject)
{
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
else
{
alert("No soporta XMLHTTP!");
}
xmlhttp.onreadystatechange=function()
{
if(xmlhttp.readyState==4)
{
document.getElementById('ajax').innerHTML=xmlhttp. responseText;
}
}
xmlhttp.open("GET","contenido.html",true);
xmlhttp.send(null);
}
kien me puede decir k tengo mal, es una funcion para recargar cierto div de una pagina, me funciona en firefox y safari pero en Opera,crhome y en IE 9 no me funciona alguien sabe porque
aqui esta el index.html
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Recarga de contenido con Ajax</title>
<script src="ajax.js" language="javascript" type="text/javascript"> </script>
</head>
<body>
<a href="#" onclick="recarga()">AQUI</a>
<div id="ajax">
</div>
</body>
</html>