Ver Mensaje Individual
  #2 (permalink)  
Antiguo 24/11/2010, 05:22
Avatar de jdelrioj
jdelrioj
 
Fecha de Ingreso: julio-2008
Ubicación: La Rambla , Córdoba -> Andalucía
Mensajes: 340
Antigüedad: 16 años, 5 meses
Puntos: 13
Respuesta: Ejecutar javascript desde funcion ajax

Ya lo he solucionado, me he tirado casi dos dias pero aqui esta, poner el codigo ultimo aqui

function showUser(str)
{
if (str=="")
{
document.getElementById("txtHint").innerHTML="";
return;
}
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("txtHint").innerHTML=xmlht tp.responseText;
// Este es el codigo que hay que poner

window.addEvent('domready', function(){
new Accordion($$('.panel h3.jpane-toggler'), $$('.panel div.jpane-slider'), {
onActive: function(toggler ,i) {
toggler.addClass('jpane-toggler-down');
toggler.removeClass('jpane-toggler');
},onBackground: function(toggler, i) {
toggler.addClass('jpane-toggler');
toggler.removeClass('jpane-toggler-down');
},duration:250,alwaysHide: true, display:null}); });


}
}
xmlhttp.open("GET","/nueva/modules/mod_guianueva/models.php?q="+str,true);

xmlhttp.send();
}