Advertisement
Guest User

Untitled

a guest
Nov 20th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. $('.action-delete').click(function(e) {
  2. e.preventDefault();
  3. element = $(this).parent().parent()
  4. element.hide();
  5. url = this.dataset.url
  6.  
  7. $.ajax({
  8. type: 'DELETE',
  9. url: url,
  10. success: function (result) {
  11. console.log(result);
  12. }
  13. });
  14. }
  15. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement