Ver Mensaje Individual
  #4 (permalink)  
Antiguo 23/02/2016, 10:07
kukiko11
 
Fecha de Ingreso: diciembre-2015
Mensajes: 115
Antigüedad: 8 años, 11 meses
Puntos: 2
Pregunta Respuesta: asociar respuesta json de forma individual a divs cargados dinamicamente?

Cita:
Iniciado por infoturnosya Ver Mensaje
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>
no me resulto, osea no me devuelve la data, el boton cumple su funcion pero no se genera la respuesta json o no la muestra