I have an iframe when I closed it, it was still playing in the background, I removed the attribute src
and it no longer plays, but when I open the modal again, it does not open the iframe.
This is the code:
$(document).ready(function()
{
$("#myModal").modal('hiden');
var url = $("#cartoonVideo").attr('src');
$("#myModal").on('hide.bs.modal', function()
{
$("#cartoonVideo").attr('src', '');
});
$("#myModal").on('show.bs.modal.m', function()
{
$("#cartoonVideo").attr('src', url);
});
$(".modal").click(function(){
$('#cartoonVideo').removeAttr('src');
});
});