<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Stop Hiding Bootstrap 4 Modal on Backdrop Click</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css">
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js"></script>
$(document).ready(function(){
$(".launch-modal").click(function(){
<button type="button" class="btn btn-lg btn-primary launch-modal" data-toggle="modal">Launch Demo Modal</button>
<div id="myModal" class="modal fade" tabindex="-1">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Confirmation</h5>
<button type="button" class="close" data-dismiss="modal">×</button>
<p>Do you want to save changes to this document before closing?</p>
<p class="text-secondary"><small>If you don't save, your changes will be lost.</small></p>
<p class="text-info"><small><strong>Note:</strong> If you click on the black area outside of this modal window it will not hide.</small></p>