Llevo un buen rato para intentar la solución con AJAX pero no lo consigo, supuestamente está bien el ejemplo pero pone más abajo que hay que añadir tambien "http = createRequestObject ()", lo he añadido a la función "function sendReq(req) " pero sigue sin funcionar.
Si alguien consiguiera hacer funcionar el método de AJAX estaría muy agradecido.
Estoy probando así, si alguien tiene alguna sugerencia...
Código HTML:
Ver original<!DOCTYPE html>
<script type="text/javascript">
function createRequestObject()
{
var obj;
var browser = navigator.appName;
if (browser == "Microsoft Internet Explorer") {
obj = new ActiveXObject("Microsoft.XMLHTTP");
} else {
obj = new XMLHttpRequest();
}
return obj;
}
function sendReq(req)
{
http = createRequestObject();
http.open('get', req);
http.onreadystatechange = handleResponse;
http.send(null);
}
function handleResponse()
{
if (http.readyState == 4)
{
var response = http.responseText;
document.getElementById('flashcontent').innerHTML=response;
}
}
sendReq('http://158.49.247.14/caceresvirtual/contenido/abadia/flash/TourWeaver_Abadia.html');