JSFiddle - React, Tailwind, and code Playground
by iBertel
HTML
<a href="#" class="btn-terms">Klik her</a>
<div class="terms">
<div class="close-terms">x</div>
Indhold
</div>
CSS
.terms{
display:none;
width:800px;
height:400px;
background-color:#F20;
}
.close-terms {
cursor:pointer;
}
JavaScript
$('a.btn-terms, .close-terms').click(function(){
$('.terms').slideToggle(600);
});