Guest User

Untitled

a guest
Jul 17th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. $.ajax({
  2. url: '/get_items',
  3. method: 'POST',
  4. data: { item_id: item_id },
  5. success: function (response) {
  6. alert(JSON.stringify(response.result[0].name));
  7. $('#hidden_item_item_id').val(response.result[0].id);
  8. $('#item_name').val(response.result[0].name);
  9. $('#item_remarks').val(response.result[0].remarks);
  10. $('#updateItemsModal').modal('show');
  11. }
  12. });
Add Comment
Please, Sign In to add comment