Advertisement
CHaNStar

5 bs

Jan 22nd, 2020
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var href = $(this).attr('href');
  2.  
  3.             $('.btnYa').off();
  4.             $('.btnYa').on('click', function() {
  5.                 $.ajax({
  6.                     'url'       : href,
  7.                     'type'      : 'POST',
  8.                     'success'   : function(result) {
  9.                         if (result == 1) {
  10.                             $(".modal").modal('hide');
  11.                             tr.fadeOut();
  12.  
  13.                             toastr.success('Data berhasl di hapus', 'Informasi');
  14.                         }
  15.                     }
  16.                 });
  17.             });
  18.         });
  19.     });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement