JSFiddle - React, Tailwind, and code Playground
by learningforever
HTML
<script src="http://placehold.it/140x100"></script>
<script src="http://placehold.it/116x116"></script>
<div id="myModal" class="modal">
<div class="modal-content">
<div class="modal-header">
<span class="close">×</span>
<h2>texxt</h2>
</div>
<div class="modal-body">
<p>text</p>
<p>text</p>
</div>
<div class="modal-footer">
<h3>footer text</h3>
</div>
</div>
</div>
JavaScript
window.onload = function(){
document.getElementById('close').onclick = () => {
this.parentNode.parentNode.remove();
return false;
};
};