Ver Mensaje Individual
  #2 (permalink)  
Antiguo 16/04/2013, 13:33
Avatar de rottenp4nx
rottenp4nx
 
Fecha de Ingreso: octubre-2012
Ubicación: Santiago
Mensajes: 417
Antigüedad: 12 años, 1 mes
Puntos: 36
Respuesta: Como dar efectos fadeIn y fadeOut

Podrías usar las funciones del mismo AJAX

Código Javascript:
Ver original
  1. $('#formComent').submit(function() {
  2.         $.ajax({
  3.             type: 'POST',
  4.             url: $(this).attr('action'),
  5.             data: $(this).serialize(),
  6.             beforeSend: function(){
  7.                 $("#id").fadeOut("slow");
  8.              },
  9.             success: function(data) {
  10.                 $('#comentarios').html(data);
  11.                 $('#id').fadeIn("slow");
  12.             }
  13.         })
  14.        
  15.         return false;
  16.     });

Saludos