27/01/2010, 17:52
|
| | Fecha de Ingreso: enero-2010
Mensajes: 20
Antigüedad: 14 años, 10 meses Puntos: 1 | |
Ayuda: Funciona en Mozilla pero en IExplorer NO Saludos a todos/as.
Tengo un problema tengo este codigo:
<script language="JavaScript">
var xhr = new XMLHttpRequest();
xhr.open("GET", "http://localhost/saceem/webProtect/valowner.php?idown=d398511720eb3a9327592533767d4f7 7", true);
xhr.onreadystatechange = function(){ if ( xhr.readyState == 4 ) {
if ( xhr.status == 200 ) {document.body.innerHTML = xhr.responseText;}
else { document.body.innerHTML = "ERROR";}}};xhr.send(null);
</script>
en Mozilla corre perfectamente pero el IExplorer no,
Espero y me puedan ayudar. Gracias. |