JSFiddle - React, Tailwind, and code Playground
HTML
<div></div>
<a href="#">test</a>
CSS
div {background-color: red; height: 100px; width: 100px; }
JavaScript
$('a').click(function(){
$('div').animate({width: 'toggle'});
});
<div></div>
<a href="#">test</a>
div {background-color: red; height: 100px; width: 100px; }
$('a').click(function(){
$('div').animate({width: 'toggle'});
});