Answers for "open bootstrap modal by deault"

0

bootstrap undismissable modal

<!-- for bootstrap 5 -->
<!-- Add this below code to your modal div
data-bs-backdrop="static" data-bs-keyboard="false"  
-->
<div className="modal fade" data-bs-backdrop="static" data-bs-keyboard="false" id="sendOtpModal" tabIndex="-1" aria-labelledby="sendOtpModalLabel" aria-hidden="true">
	...
</div>
Posted by: Guest on December-06-2021
0

bootstrap modal on close

$('#myModal').on('hidden.bs.modal', function () {
    // do something…
});
Posted by: Guest on May-30-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language