Advertisement
Guest User

Untitled

a guest
Oct 13th, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. $(document).ready(function() {
  2. erasePhotos();
  3. });
  4.  
  5.  
  6. function erasePhotos() {
  7. var photos = $('.photo-thumb');
  8.  
  9. photos.each(function() {
  10. var id = $(this).attr('data-id');
  11.  
  12. $.ajax({
  13. method: 'post',
  14. url : '/ajax/photo/delete/',
  15. data : { 'id' : id },
  16. })
  17. });
  18.  
  19. window.location = window.location;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement