JSFiddle - React, Tailwind, and code Playground

by Ryan Perez

HTML

<a class="btn btn-primary waves-effect waves-light brand-color-secondary-comp-background" data-toggle="collapse" href="#sats" aria-expanded="true" aria-controls="ielts">
                                        Show
                                        </a>

JavaScript

$(document).ready(function(){
        $('a[data-toggle="collapse"]').click(function(){
            $(this).text($(this).text() == 'Show' ? 'Remove' : 'Show');
        });
    });