Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2014
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. <code>
  2. <a href="javascript:;" data-id="1" onclick="showAjaxModal();" class="btn btn-primary btn-single btn-sm">Show Me</a>
  3. </code>
  4.  
  5. <code>
  6. <script type="text/javascript">
  7. function showAjaxModal()
  8. {
  9. var uid = $(this).data('id');
  10.  
  11. jQuery('#modal-7').modal('show', {backdrop: 'static'});
  12.  
  13.  
  14. jQuery.ajax({
  15. url: "test-modal.php?id=" + uid,
  16. success: function(response)
  17. {
  18. jQuery('#modal-7 .modal-body').html(response);
  19. }
  20. });
  21. }
  22. </script>
  23. </code>
  24.  
  25. <code>
  26. <div class="modal fade" id="modal-7">
  27. <div class="modal-dialog">
  28. <div class="modal-content">
  29.  
  30. <div class="modal-header">
  31. <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
  32. <h4 class="modal-title">Dynamic Content</h4>
  33. </div>
  34.  
  35. <div class="modal-body">
  36.  
  37. Content is loading...
  38.  
  39. </div>
  40.  
  41. <div class="modal-footer">
  42. <button type="button" class="btn btn-white" data-dismiss="modal">Close</button>
  43. <button type="button" class="btn btn-info">Save changes</button>
  44. </div>
  45. </div>
  46. </div>
  47. </div>
  48. </code>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement