Answer the question
In order to leave comments, you need to log in
How to stop video after closing Bootstrap modal window?
Hello, please tell me how to stop the video after closing the Bootstrap modal window.
Answer the question
In order to leave comments, you need to log in
$('.youmodal').on('hide.bs.modal', function () {
var video = document.getElementsByTagName('video');
for (var i = 0; i < video.length; i++) {
video[i].pause();
}
});
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question