Twitter Bootstrap Modal stop Youtube video

后端 未结 21 1664
小蘑菇
小蘑菇 2020-11-27 11:57

I\'m very new to javascript and trying to use Twitter bootstrap to get a good looking website up and running quickly. I know this has something to do with jquery, but I\'m

21条回答
  •  难免孤独
    2020-11-27 12:23

    Had a modal with many videos. Updated the code by @guillesalazar to close multiple videos in the modal.

    $("#myModal").on('hidden.bs.modal', function (e) {
                $("#myModal iframe").each(function () {
                    $(this).attr("src", '');
                });
            });
    

提交回复
热议问题