885 0 0 0
Last Updated : 2025-04-28 23:42:16
This snippet will teach you how to prevent modal close on clicking outside the bootstrap modal
There are 2 ways to prevent bootstrap modal from closing when clicking on the backdrop of modal (outside bootstrap modal) like this
$('#modal_id').modal({backdrop: 'static', keyboard: false})
or using the data attribute like this
<button data-target="#myModal" data-toggle="modal" data-backdrop="static" data-keyboard="false">
Launch demo modal
</button>`