mikejmoran of Speak Creative
3/19/2019 - 7:45 PM

kill_video_modal.js

(function($){
   $(document).ready(function(){
    $("#myModal").on("hidden.bs.modal", function() {
        console.log("You have closed the modal.");
        var videoURL = $(".videoWrapper iframe").attr("src");
        $(".videoWrapper iframe").attr("src", "");
        $(".videoWrapper iframe").attr("src", videoURL);
    });
   });
})(jQ171);