JSFiddle - React, Tailwind, and code Playground
HTML
<small class="notifi pull-right">1</small>
JavaScript
$('.pull-right').click(function () {
var that = this;
$(document).one('click', function () {
$(that).hide('fade');
});
});