Ver Mensaje Individual
  #2 (permalink)  
Antiguo 20/09/2013, 07:30
thorstorm
 
Fecha de Ingreso: septiembre-2013
Mensajes: 12
Antigüedad: 11 años, 2 meses
Puntos: 1
Respuesta: Envío por $.POST: no funciona el js devuelto

Prueba a utilizar la siguiente función :
Código Javascript:
Ver original
  1. $(".borrar").on('click', function(){
  2.       var id = $(this).attr('id');
  3.       $.post("borrar.php", { id: id },  function(respuesta){
  4.             $("#capa").html(respuesta);
  5.       })
  6.    });