JSFiddle - React, Tailwind, and code Playground

by Dave Mednick

HTML

<div id='topbar'>toggle me</div>

CSS

#topbar {
    background: orange;
    color: white;
    display:block;
    width:100%;
    text-align:center;
    height:40px;
}

JavaScript

$("#topbar").click(function () {
    $(this).animate({
        height: ($(this).height() == 40) ? 10 : 40
    }, 200);
});