JSFiddle - React, Tailwind, and code Playground

by TJ VanToll

HTML

<link href="http://code.jquery.com/ui/jquery-ui-git.css" rel="stylesheet"
/>
<script src="http://code.jquery.com/jquery-git.js"></script>
<script src="http://code.jquery.com/ui/jquery-ui-git.js"></script>

<p>Resize east or west.  You will move the box.</p>
<div id="resizable"></div>

CSS

#resizable {
    width: 50px;
    height: 50px;
	margin: auto;
    border: 1px solid black;
}

JavaScript

$("#resizable").resizable({
	handles: "e, w"
});