JSFiddle - React, Tailwind, and code Playground
by xmajox
HTML
<button id="showEmailHistory">Show Email History</button>
<div>
<div id="emailHistory">
Email History
</div>
<div id="whatevaHistory">
Other content
</div>
</div>
JavaScript
$('#showEmailHistory').click(function() {
$('#emailHistory').siblings().slideUp();
$('#emailHistory').slideToggle();
});