JSFiddle - React, Tailwind, and code Playground

by borayeris

HTML

<div id='bigAd' class='pre-roll-ad screenAd hide'><div class='innerAd'><iframe width="560" height="315" src="https://www.youtube.com/embed/exyGe7VqMs0?enablejsapi=1" frameborder="0" allowfullscreen></iframe> <a class='bigadclose' href='javascript:void(0)'>Skip this and play</a></div></div>

JavaScript

jQuery.ready(function(){
        function runAd() {
            var preAdIframe = $('.pre-roll-ad iframe')[0].contentWindow;
            preAdIframe.postMessage('{"event":"command","func":"playVideo","args":""}','*');
        }
        $('.bigadclose').click(function(){
            runAd();
        });
    });