Asi es el ajax responseText me esta devolviendo toda la pagina php en lugar de solo lo que yo quiero imprimir con echo...
no entiendo...
AYUDA!!!
function showResult(str)
{
if (str.length==0)
{
document.getElementById('livesearch').innerHTML="" ;
document.getElementById('livesearch').style.border ="0px";
return
}
else{
var xmlHttp=nuevoAjax();
xmlHttp.open("POST","consultalivesearch.php",true) ;
xmlHttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
xmlHttp.send('q='+str);
xmlHttp.onreadystatechange=function()
{
if (xmlHttp.readyState==4)
{
document.getElementById('livesearch').innerHTML=xm lHttp.responseText;
alert(xmlHttp.responseText);// ESTE ALERT ME MUESTRA TODO EL CONTENIDO DE LA PAGINA QUE ESTA MAS ABAJO
document.getElementById('livesearch').style.border ='1px solid #A5ACB2';
}
}
}
}
ESTA ES LA PAGINA consultalivesearch.php
<?php
include_once("../Conectarse/Conexionllamados.php");
//get the q parameter from URL
$q=$_POST['q'];
echo $q;
?>