JSFiddle - React, Tailwind, and code Playground
by wrxsti85
HTML
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<link rel="stylesheet" href="//code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css">
<img src="http://images03.olx.in/ui/14/85/78/1388317249_582477778_1-Pictures-of--Best-part-time-for-student-fresher-and-work-pro-in-this-new-year.jpg" />
<textarea></textarea>
CSS
img {
border: solid 1px #000;
}
JavaScript
$("img").resizable({
resize: function (event, ui) {
$('textarea').css({
'height': $(this).height(),
'width': $(this).width()
});
}
});