JSFiddle - React, Tailwind, and code Playground

by aitnasser

HTML

<div  class="div" id="content" contenteditable="true" >
    <img  src="http://store.valvesoftware.com/images/sizing_chart_shirt.png" id = "img" class="img"> 
  </div>

JavaScript

$('#content').draggable();

$('#img').resizable({
    animate: true,
        ghost: true
});