1 2 3 4 5 6 7 8 9 10 11 12 13 14
| // Video Play $(function () { // Auto play modal video $(".video").click(function () { var theModal = $(this).data("target"), videoSRC = $(this).attr("data-video"), videoSRCauto = videoSRC + "?modestbranding=1&rel=0&controls=0&showinfo=0&html5=1&autoplay=1"; $(theModal + ' iframe').attr('src', videoSRCauto); $(theModal + ' button.close').click(function () { $(theModal + ' iframe').attr('src', videoSRC); }); }); });
|