Les comento que en una pagina padre cargo una pagina hija a través en un div con una función ajax, estas se carga sin ningún problema pero no interpreta funciones javascript, he leido que el problema es que ajax interpreta solo texto y dan soluciones, pero ninguna he podido aplicar.
La funcion ajax que me carga en div la pagina hija es la siguiente
Código:
function xmlhttp(){ var xmlhttp; try{xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");} catch(e){ try{xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");} catch(e){ try{xmlhttp = new XMLHttpRequest();} catch(e){ xmlhttp = false; } } } if (!xmlhttp) return null; else return xmlhttp; } function buscar(){ var query = document.getElementById('q').value; var A = document.getElementById('resultados'); var B = document.getElementById('loading'); var ajax = xmlhttp(); ajax.onreadystatechange=function(){ if(ajax.readyState==1){ B.innerHTML = "<img src='images/loading.gif' alg='Loading...'>"; } if(ajax.readyState==4){ A.innerHTML = ajax.responseText; B.innerHTML = ""; } } ajax.open("GET","buscador.php?q="+encodeURIComponent(query),true); ajax.send(null); return false; }
Intente aplicar la solucion de panino5001 http://www.disegnocentell.com.ar/notas2.php?id=176, pero no tengo exito. Podrian ayudarme por favor.
Gracias,