ericakfranz
12/7/2015 - 10:16 PM

Stop a video from playing in our Canvas lightbox optin when it closes.

Stop a video from playing in our Canvas lightbox optin when it closes.

jQuery(document).ready( function($){
    //Snag the URL of the iframe so we can use it later
    var url = $('.optin_custom_html_applied iframe').attr('src');

    $(document).on('OptinMonsterOnClose', function( event, data, object){
      //Assign the iframe's src to null, which kills the video
      $('.optin_custom_html_applied iframe').attr('src', '');
    });
});