Ver Mensaje Individual
  #1 (permalink)  
Antiguo 11/05/2015, 19:46
chigorin4
 
Fecha de Ingreso: mayo-2015
Mensajes: 11
Antigüedad: 9 años
Puntos: 0
Problema con .click y .ajax

Hola tengo un problema porque no me carga la funcion AJAX, que ya la verifique y esta bien, sin embargo el codigo no se ejecuta

Código Javascript:
Ver original
  1. $("#envia").click(function(){
  2.        
  3.         $.ajax({
  4.        
  5.         data:{dia: d,mes: m,des: ct},
  6.         url:"calendario_creaFecha.php",
  7.         type:"post",
  8.         success: function (response)
  9.         {
  10.             alert(response);
  11.         }
  12.  
  13.     });