JSFiddle - React, Tailwind, and code Playground
HTML
Click on the Google image below, when you click on it the div below will appear.<br/>
<a href="#" id="activate-player"><img src="http://www.google.com/intl/en_com/images/srpr/logo1w.png"></a>
<div id="player">
This is where your BC code lives
</div>
JavaScript
$("#player").hide();
$("#activate-player").click( function(event) {
$("#player").show();
event.preventDeafult();
});