JSFiddle - React, Tailwind, and code Playground
by basiclaser
HTML
<BUTTON id="playButton">helloimabutton</BUTTON>
<div id="backgroundVideo"></div>
CSS
.backgroundVideo {
width:200%;
height:200%;
}
JavaScript
$("#playButton").click(function() {
$("#backgroundVideo").html('<iframe id="backgroundVideo" width="560" height="315" src="http://www.youtube.com/embed/Fn6MVk1dnrc?rel=0&autoplay=1&loop=1&playlist=Fn6MVk1dnrc" frameborder="0" allowfullscreen></iframe>');
});