659
| <![CDATA[<script>
autoPlayYouTubeModal();
//FUNCTION TO GET AND AUTO PLAY YOUTUBE VIDEO FROM DATATAG
function autoPlayYouTubeModal(){
var trigger = $("body").find('[data-toggle="modal"]');
trigger.click(function(){
var theModal = $(this).data("target"),
videoSRC = $(this).attr("data-theVideo"),
videoSRCauto = videoSRC + "?autoplay=0&rel=0&wmode=transparent&showinfo=0";
$("#videoTitulo").html( $(this).attr("data-titulo"));
$(theModal + ' iframe').attr('src', videoSRCauto);
$(theModal + ' button.close').click(function(){
$(theModal + ' iframe').attr('src', videoSRC + '');
});
});
}
</script>]]>
|