Guest User

Untitled

a guest
Dec 11th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. $('#deleteButton').click
  2. (
  3. function()
  4. {
  5. if (confirm("Are you sure you want to delete this item?\n"+$('.selected').find('span').first().html()))
  6. {
  7. $.post
  8. (
  9. '<%= URL %>',
  10. {
  11. "delete": $('.selected').find('.id').html(),
  12. "__REQUESTDIGEST": $('input#__REQUESTDIGEST').attr('value')
  13. },
  14. function()
  15. {
  16. location.reload();
  17. }
  18. );
  19. }
  20. return false;
  21. }
  22. );
Add Comment
Please, Sign In to add comment