JSFiddle - React, Tailwind, and code Playground

by TJ VanToll

HTML

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

<div id="parent">
    <img src="http://placekitten.com/100/100" />
</div>

CSS

#parent {
    border: 1px solid blue;
    width: 300px;
    height: 300px;
}

JavaScript

$('img')
    .resizable({ containment: 'parent' })
    .parent()
    .draggable({ containment: 'parent' });