Ver Mensaje Individual
  #2 (permalink)  
Antiguo 14/08/2012, 06:38
Avatar de djaevi
djaevi
 
Fecha de Ingreso: marzo-2007
Ubicación: Moreno, Buenos Aires
Mensajes: 400
Antigüedad: 17 años, 2 meses
Puntos: 47
Respuesta: Problema formulario jquery

Prueba asi:

Código Javascript:
Ver original
  1. $.ajax({
  2.             url: 'process1.php',
  3.             type: 'POST',
  4.             data: pass,
  5.             async: false,
  6.             beforeSend: function (obj) {$('#load').html('<img alt="loading" src="img/loading.gif">');},
  7.             complete: function(obj,check) {if (check!="success") $('#load').html('Error').addClass('imp2');},
  8.             success: function(respuesta) {
  9.                 $('#load').html('');
  10.                 var lock = respuesta;
  11.             }
  12.         });

Saludos