Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

disable close from screen modal popup

<!-- opening with html, the key is the data-backdrop="static" attribute -->
<button data-target="#myModal" data-toggle="modal" data-backdrop="static" data-keyboard="false">
    Launch demo modal
 </button>
 
<script>
//Opening with JS:
$('#myModal').modal({backdrop: 'static', keyboard: false})  
</script>
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #disable #close #screen #modal #popup
ADD COMMENT
Topic
Name
8+4 =