I am trying to embed a youtube iframe in a custom light box I have on my site. The embed itself works fine. The lightbox closes when I attempt to close it but the video (audio rather) keeps play in the background. stopVideo
function returns "stopVideo is not a function"
$("#youTubeLink").click(function(){
var f = '<iframe id="ytplayer" type="text/html" width="100%" height="400px" src="http://www.youtube.com/embed/M7lc1UVf-VE?enablejsapi=1&origin=http://example.com" frameborder="0"></iframe>'
global.addLightboxContent(f);
global.showLightbox();
});
When I close the lightbox this is what happens
$("div#lightbox-close").click(function() {
$('#ytplayer').stopVideo();
global.killLightbox();
}
- global lightbox functions are doing what they should (add iframe into LB, show it and then kill it)
- when
div#lightbox-close
is clicked on, the function is triggered. Tested with a console log
I am guessing I am missing some sort of Youtube js script include. I am not sure what exactly.
please check this example http://codepen.io/marti1125/pen/XdyPOe