Advertisement
Guest User

Untitled

a guest
Oct 13th, 2018
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. $(document).ready(function() {
  2. eraseStatus();
  3. });
  4.  
  5.  
  6. function eraseStatus() {
  7. var status = $('.item_status');
  8. var myName = $('.about-author_main').find('.about-author_name').html().trim();
  9.  
  10. status.each(function() {
  11. var id = $(this).closest('.listing_item').find('.rating_link').attr('data-id');
  12. $.ajax({ method: 'post', url : '/ajax/status/delete/', data : { 'id' : id } })
  13. });
  14.  
  15. window.location = 'http://birdz.sk/' + myName + '/statusy/list/';
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement