which javascript trigger in bootstrap modals click outside the modal and close code example
Example 1: bootstrap modal popup disable click outside
<button data-target="#myModal" data-toggle="modal" data-backdrop="static" data-keyboard="false">
Launch demo modal
</button>
Example 2: close bootstrap modal with javascript
$('#myModal').modal('hide');