Answers for "how to stop video in bootstrap modal when closing the modal"

3

bootstrap modal popup disable click outside

<button data-target="#myModal" data-toggle="modal" data-backdrop="static" data-keyboard="false">
    Launch demo modal
 </button>
Posted by: Guest on March-18-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 "how to stop video in bootstrap modal when closing the modal"

Code answers related to "Javascript"

Browse Popular Code Answers by Language