Ver Mensaje Individual
  #5 (permalink)  
Antiguo 11/12/2015, 12:31
rprado2008
 
Fecha de Ingreso: septiembre-2015
Mensajes: 39
Antigüedad: 9 años, 4 meses
Puntos: 0
Respuesta: consulta sobre valor devuelto en un <div> por ajax

mi archivo ajax.js

Código Javascript:
Ver original
  1. var xmlhttp;
  2. function loadDoc(string,url,cfunc)
  3. {
  4.     if (window.XMLHttpRequest)
  5.   {// code for IE7+, Firefox, Chrome, Opera, Safari
  6.   xmlhttp=new XMLHttpRequest();
  7.   }
  8. else
  9.   {// code for IE6, IE5
  10.   xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  11.   }
  12. xmlhttp.onreadystatechange=cfunc;
  13. xmlhttp.open("POST",url,true);
  14. xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
  15. xmlhttp.send(string);
  16. }