Advertisement
Guest User

Untitled

a guest
Mar 28th, 2013
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. function deleteuploadedfile(filetodelete) {
  2. $imagefile = 'http://domain.co.uk/wp-content/themes/monster/shopp/uploads/'+filetodelete;
  3. alert($imagefile);
  4. $.ajax({
  5. type: 'POST',
  6. data: {
  7. action: 'deleteimage',
  8. imagefile: $imagefile,
  9. },
  10. url: 'http://domain.co.uk/wp-content/themes/monster/shopp/delete.php',
  11. success: function(response){
  12. if(!response.success) {
  13. alert(response.error);
  14. } else {
  15. alert("success!");
  16. }
  17. }
  18. })
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement