Advertisement
Vladimir3261

Untitled

Aug 29th, 2016
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. <!-- Кнопка, открывающее модальное окно -->
  2. <button type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal">
  3. Открыть модальное окно
  4. </button>
  5.  
  6. <!-- Модальное окно -->
  7. <div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
  8. <div class="modal-dialog" role="document">
  9. <div class="modal-content">
  10. <div class="modal-header">
  11. <button type="button" class="close" data-dismiss="modal" aria-label="Закрыть">
  12. <span aria-hidden="true">×</span>
  13. </button>
  14. <h4 class="modal-title" id="myModalLabel">Заголовок модального окна</h4>
  15. </div>
  16. <div class="modal-body">
  17. Содержимое модального окна...
  18. </div>
  19. <div class="modal-footer">
  20. <button type="button" class="btn btn-default" data-dismiss="modal">Закрыть</button>
  21. <button type="button" class="btn btn-primary">Сохранить изменения</button>
  22. </div>
  23. </div>
  24. </div>
  25. </div>
  26.  
  27.  
  28. <script>
  29. $(document).ready(function(){
  30. $('#myModal').on('shown.bs.modal', function() {
  31. alert('SHOW');
  32. })
  33. });
  34. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement