JSFiddle - React, Tailwind, and code Playground

by magicalex

HTML

<div>click me</div>

CSS

div {
    height: 200px;
    width: 70px;
    background: red;
}

JavaScript

$('div').data('height',200).click(function(){
    var divHeight = $(this).data('height');
    divHeight = $(this).height()==divHeight ? 100 : divHeight;
    $(this).animate({height: divHeight},500);
});