Ver Mensaje Individual
  #3 (permalink)  
Antiguo 14/02/2014, 09:44
Montes28
 
Fecha de Ingreso: septiembre-2010
Mensajes: 1.853
Antigüedad: 13 años, 7 meses
Puntos: 6
Respuesta: Problema para insertar a base de datos utilizando ajax

jonni09lo gracias por contestar, asi lo estoy haciendo, lo estoy realizando bien?

Código Javascript:
Ver original
  1. var title = $('#title').val();


Código Javascript:
Ver original
  1. select: function(start, end, allDay, jsEvent, view, resource) {
  2. var title = $('#title').val();
  3.  
  4. $('#registrar').click(function(){
  5.             $.ajax({
  6.                          url:'http:/volcano/public/postComision',
  7.                          type:'post',
  8.                          data:'title='+title,
  9.                     }).done(function(data) {
  10.                         //alert("Evento Guardado");
  11.                          //alert("Datos guardados, respuesta: " + start);
  12.                     });
  13.                 });
  14. }