Ver Mensaje Individual
  #2 (permalink)  
Antiguo 22/02/2016, 08:35
infoturnosya
 
Fecha de Ingreso: diciembre-2015
Ubicación: rosario
Mensajes: 69
Antigüedad: 8 años, 11 meses
Puntos: 5
Respuesta: asociar respuesta json de forma individual a divs cargados dinamicamente?

Debe utilizar el puntero this para q solo afecte a ese comentario, ej:
Código Javascript:
Ver original
  1. <script>
  2.     $('.form-denunciar').submit(
  3.     function() {
  4.         $.ajax({
  5.             type: 'POST',
  6.             url: $(this).attr('action'),
  7.             dataType: 'JSON',
  8.             data: $(this).serialize(),
  9.             success: function(data) {
  10.                    //no olvides de quitarle el id="status" a este div
  11.                   $(this).children('div.status').html(data).fadeIn('slow');
  12.             }
  13.         })
  14.         return false;
  15.     });
  16. })  
  17. </script>