Advertisement
Guest User

Untitled

a guest
Aug 30th, 2015
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. echo '<script type="text/javascript">';
  2. echo '$('#alertDuplicate').modal('show')';
  3. echo '</script>';
  4.  
  5. <!-- Modal Alert Duplicate -->
  6. <div class="modal fade" id="alertDuplicate">
  7. <div class="modal-dialog" role="document">
  8. <div class="modal-content">
  9. <div class="modal-header">
  10. <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
  11. <h4 class="modal-title">Erro</h4>
  12. </div>
  13. <div class="modal-body">
  14. <p>Essa função já existe!</p>
  15. </div>
  16. <div class="modal-footer">
  17. <button type="button" class="btn btn-default" data-dismiss="modal">Fechar</button>
  18. </div>
  19. </div><!-- /.modal-content -->
  20. </div><!-- /.modal-dialog -->
  21. </div><!-- /.modal -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement