Advertisement
Guest User

nganu

a guest
Oct 31st, 2014
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script type="text/javascript">
  2.     $(document).ready(function(){
  3.         $(".delete").each(function(){
  4.             $(this).click(function(){
  5.  
  6.         var confirmAction = confirm("Opo arep di delete tenanan iki?");
  7.        
  8.         if(confirmAction == true) {
  9.                   $.ajax({
  10.                     url : $(this).attr("href"),
  11.                     type : "get",
  12.                     success : function(response){
  13.                         window.location = 'administrator.php?page=artikel';
  14.                     }
  15.                   });
  16.         }
  17.                 return false;
  18.             });
  19.         });
  20.     });
  21. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement