JSFiddle - React, Tailwind, and code Playground
by chrimbus
HTML
<div class="player"></div>
CSS
.home-player {
width:100px;
height:100px;
border:1px dashed red;
}
#player {
border:1px dashed blue !important;
}
JavaScript
$pl = $('.player');
$pl.addClass('home-player').attr('id', 'player').wrap("<div id='container' class='click-to-play-video'></div>");