Advertisement
jamboljack

Action Edit Button

May 25th, 2016
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script type="text/javascript">
  2.     $(document).on( "click", '.edit_button',function(e) {
  3.         var name = $(this).data('name');
  4.         var id   = $(this).data('id');
  5.         $(".blood_id").val(id);
  6.         $(".blood_name").val(name);
  7.     });
  8. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement