JSFiddle - React, Tailwind, and code Playground

by toubia95

HTML

<div class="toggle">
<div class="show">
En savoir plus »
</div>
<div class="hide">
Informations en plus<br>
Informations en plus<br>
Informations en plus<br>
Informations en plus
</div>
</div>

<div class="toggle">
<div class="show">
Plus d'informations 2
</div>
<div class="hide">
Informations en plus<br>
Informations en plus<br>
Informations en plus<br>
Informations en plus
</div>
</div>

JavaScript

$('.hide').hide();
$('.show').show();

$('.toggle').on('click', function(evt) {
    $('.hide',this).toggle();
    $('.show',this).toggle();
});