JSFiddle - React, Tailwind, and code Playground
by TekVanDo
HTML
<div id="test">test</div>
CSS
div{
background:blue;
width:100px;
height: 50px;
}
JavaScript
$("#test").click(function(){
old_width = $(this).width();
old_height = $(this).height();
$(this).animate({
width:"400px",
}, 500, function() {
// Animation complete.
$(this).animate({
height:"300px",
}, 500);
});
});