JSFiddle - React, Tailwind, and code Playground
by Buddhi
HTML
<link rel="stylesheet" href="http://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<div id="source">
</div>
<div id="container">
<div class="movingDiv">
<p>Drag and resize</p>
</div>
</div>
CSS
.movingDiv {
border: 1px solid black;
width: 150px;
height: 150px;
padding: 0.5em;
resize: both;
overflow: auto;
position: absolute;
JavaScript
$("#source").click(function () {
$("#container").append('<div class="movingDiv"></div>');
});
$(".movingDiv").resizable().draggable();