Guest User

Untitled

a guest
Dec 11th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. <a href="delete?id=1" class="confirm">Delete 1</a>
  2. <a href="delete?id=2" class="confirm">Delete 2</a>
  3. <a href="delete?id=3" class="confirm">Delete 3</a>
  4.  
  5. <div class="modal hide fade" id="confirm-delete" role="dialog" aria-labelledby="confirm-delete-header" aria-hidden="true">
  6. <div class="modal-header">
  7. <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
  8. <h3 id="confirm-delete-header">Delete Confirmation</h3>
  9. </div>
  10. <div class="modal-body">
  11. <p>Are you sure you want to delete this record?</p>
  12. </div>
  13. <div class="modal-footer">
  14. <a href="#" class="btn" data-dismiss="modal" aria-hidden="true">Cancel</a>
  15. <a href="#" class="btn btn-danger">Delete</a>
  16. </div>
  17. </div>
  18.  
  19. <script>
  20. $(document).ready(function() {
  21. // Confirmation modal
  22. $('a.confirm').click(function(e) {
  23. e.preventDefault();
  24. $('#confirm-delete').data('href', $(this).attr('href')).modal('show');
  25. });
  26. $('#confirm-delete').on('show', function() {
  27. $(this).find('.btn-danger').attr('href', $(this).data('href'));
  28. });
  29. });
  30. </script>
Add Comment
Please, Sign In to add comment