actualizar variable con ajax



   AUTOR PREGUNTA

Publicado 18 junio 2014 - 22:38

¿Cómo puedo actualizar una variable con Ajax usando prototype?


¿Tienes la misma pregunta? Yo también

 

Publicado 18 junio 2014 - 23:12

Has probado con XMLHttpRequest Object?

 

Publicado 18 junio 2014 - 23:23

Con el siguiente código lo puedes hacer:

new Ajax.Request('/scrip_remoto.php', { 
method: 'get', onSuccess: function(transport) {
var tu_variable= transport.responseText; 
updateChart(tu_variable); } });

   AUTOR PREGUNTA

Publicado 19 junio 2014 - 04:58

Gracias Jhony