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>

<div id="resizable"></div>

CSS

#resizable {
    background: #555;
    right: 50px;
    position: absolute;
    width: 100px;
    height: 500px;
}

JavaScript

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