Guest User

Untitled

a guest
Nov 21st, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. $("#delfoto").click(function () {
  2. id = $(this).data("id");
  3. $.ajax({
  4. url: 'delete.php?id=' + id,
  5. cache: false,
  6. contentType: false,
  7. processData: false,
  8. data: data,
  9. type: 'post'
  10. }).done(function (data) {
  11. fetchUser();
  12. $('#cadatro').modal('hide');
  13. $('#foto')[0].reset();
  14. });
  15. });
  16.  
  17. <a id="delfoto" data-id="<?php echo $row['id'] ?>"><i class="fas fa-trash"></i></a>
Add Comment
Please, Sign In to add comment