/* ======= Modal Video ======= */ $(document).ready(function() { /* ======= Play/Stop YouTube/Vimeo Video in Bootstrpa Modal ======= */ $('.play-trigger').on('click', function() { var theModal = $(this).data("target"); var theVideo = $(theModal + ' iframe').attr('src'); var theVideoAuto = theVideo + "&autoplay=1"; $(theModal).on('shown.bs.modal', function () { $(theModal + ' iframe').attr('src', theVideoAuto); }); $(theModal).on('hide.bs.modal', function () { $(theModal + ' iframe').attr('src', ''); }); $(theModal).on('hidden.bs.modal', function () { $(theModal + ' iframe').attr('src', theVideo); }); }); });