Ver Mensaje Individual
  #3 (permalink)  
Antiguo 28/05/2011, 03:12
alexg88
 
Fecha de Ingreso: abril-2011
Mensajes: 1.342
Antigüedad: 13 años
Puntos: 344
Respuesta: Texto dinámico con JQuery

Puedes utilizar el método change que ofrece JQuery junto con el método ajax, post o get para mandar la petición.


Código HTML:
Ver original
  1. <input type="text" id="textbox"/>

Código Javascript:
Ver original
  1. $('#textbox').change(function(){
  2.     $.post("cambiar.php",
  3.            {datos: $(this).val()});
  4. });