Guest User

Untitled

a guest
Jul 8th, 2019
337
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.35 KB | None | 0 0
  1. @section('scripts')
  2.  
  3. <script type="text/javascript">
  4.     $(document).ready(function(){
  5.  
  6.     $('body').on('click','.btn-hapus',function(e){
  7.       e.preventDefault();
  8.       var url = $(this).attr('href');
  9.       $('#modal-notification').find('form').attr('action',url);
  10.  
  11.       $('#modal-notification').modal();
  12.     })
  13.  
  14.     })
  15. </script>
  16.  
  17. @endsection
Advertisement
Add Comment
Please, Sign In to add comment