daily pastebin goal
41%
SHARE
TWEET

Untitled

a guest Jan 29th, 2018 49 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #tampilan button pada index
  2. <button class="btn btn-xs btn-danger btn-flat" data-href="{{ route('admin.anggota.delete', ['id' => $value->id]) }}" data-toggle="modal" data-target="#confirm-delete">
  3. <i class="fa fa-trash" data-toggle="tooltip" title="Delete"></i>
  4. </button>
  5.  
  6. #modal
  7. <div class="modal fade" id="confirm-delete" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
  8.     <div class="modal-dialog">
  9.         <div class="modal-content">
  10.             <div class="modal-header">
  11.                
  12.             </div>
  13.             <div class="modal-body">
  14.                 <h2>Are you sure?</h2>
  15.             </div>
  16.             <div class="modal-footer">
  17.                 <button type="button" class="btn btn-sm btn-default" data-dismiss="modal">Cancel</button>
  18.                 <a class="btn btn-sm btn-danger btn-ok">Delete</a>
  19.             </div>
  20.         </div>
  21.     </div>
  22. </div>
  23.  
  24. #script
  25. <script>
  26. $(document).ready(function () {
  27.  
  28.   $('#confirm-delete').on('show.bs.modal', function(e) {
  29.     $(this).find('.btn-ok').attr('href', $(e.relatedTarget).data('href'));
  30.   });
  31.  
  32. });
  33.  
  34. </script>
RAW Paste Data
Pastebin PRO WINTER Special!
Get 40% OFF Pastebin PRO accounts!
Top