JSFiddle - React, Tailwind, and code Playground
HTML
<div class="active">
blah blah
</div>
JavaScript
$(function() {
$(".activities a").click(function(e) {
$('.search').html('<center><img src="loading.gif" style="margin: 20px 0;" /></center>');
$(".search").toggle().toggleClass("active");
$('.search').load('someurlhere.php');
e.stopPropagation();
});
$(document).click(function(e) {
$('.active').hide().removeClass('active');
});
$(".search").click(function(e) {
e.stopPropagation();
});
});