I have some youtube video playing inside a popbox modal. I want to pause the video when closing the modal.
I'm trying to listen to event popbox_closing like so :
var popbox = new Popbox(); popbox.addEventListener('popbox_closing', function () { video.pause(); }, false);
But it's not working :
popbox.addEventListener is not a function
Hello,
I have some youtube video playing inside a popbox modal. I want to pause the video when closing the modal. I'm trying to listen to event popbox_closing like so :
var popbox = new Popbox(); popbox.addEventListener('popbox_closing', function () { video.pause(); }, false);
But it's not working :
popbox.addEventListener is not a function
What should I do ?
Thanks