Me podrían decir algún código alternativo que funcione en chrome??
Código:
function respuesta()
{
if(conexion1.readyState == 4)
{
if(conexion1.status == 200)
{
var info1 = conexion1.responseText
document.getElementById('videos').innerHTML = (info1);
// alert("El server dijo: " + conexion1.responseText);
}
else
{
alert("Ha ocurrido un error: " + conexion1.statusText);
}
}
else
{
var cargando='<img src="loading.gif">'
document.getElementById('videos').innerHTML = (cargando);
}
}

