Problema con Ajax+Jquery y el valor del id

Necesito que al evento click de un enlace obtener el value del mismo lo hace pero solo con el primer enlace!!
<script type='text/javascript'>
$("#actualizar_costo").live('click',function(){
var id= $("#actualizar_costo").attr("value");
        $.ajax({
          type: "POST",
          url: "<?php echo PUBLIC_PATH . 'planificacion/planificacion/actualizar_costo/'; ?>"+ $("#actualizar_costo").attr("value"),
          data: "id=" + $("#actualizar_costo").attr("value"),
          success: function(html){
            $("#div_actualizar").html(html);
          }
        });
});

});
</script>




Comentarios

  • As of jQuery 1.7, the .live() method is deprecated. Use .on() to attach event handlers. Users of older versions of jQuery should use .delegate() in preference to .live().
Sign In or Register to comment.