Cita:
Iniciado por infoturnosya Debe utilizar el puntero this para q solo afecte a ese comentario, ej:
Código Javascript
:
Ver original<script>
$('.form-denunciar').submit(
function() {
$.ajax({
type: 'POST',
url: $(this).attr('action'),
dataType: 'JSON',
data: $(this).serialize(),
success: function(data) {
//no olvides de quitarle el id="status" a este div
$(this).children('div.status').html(data).fadeIn('slow');
}
})
return false;
});
})
</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