JSFiddle - React, Tailwind, and code Playground

by mattkoskela

HTML

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<div class="videoContainer" id="video0">
    <a class="close">Close</a>
    <iframe src="http://www.youtube.com/embed/9bZkp7q19f0" width="640" height="480"></iframe>
</div>

JavaScript

$("a.close").click(function() {
    var $parent = $(this).parent();
    $parent.remove();
});