JSFiddle - React, Tailwind, and code Playground

by Stas Orekhovskiy

JavaScript

var hiddenBox = $( "#banner-message" );
$( "#button-container button" ).on( "click", function( event ) {
hiddenBox.show();
});
$(document).ready(function(){
    $('.menu_active').click(function() {
        if($(this).hasClass('open')){
            $('.content_block_1').slideUp('1000', function() {});
            $(this).removeClass('open');
        }else{
            $('.content_block_1').slideDown('1000', function() {});
            $(this).addClass('open');
        }
    });
})