JSFiddle - React, Tailwind, and code Playground
by joplomacedo
HTML
<div class="flash-messages container afp-p-now">
<div class="flash flash-notice">Welcome to website...You are currently viewing me
<span class="mini-icon mini-icon-remove-close nof-close close">close</span>
</div>
</div>
JavaScript
$(document).ready(function(){
$('.nof-close').click(function(){
$('.afp-p-now').fadeOut(function () {
$(this).css('display','none');
});
});
});