JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://code.jquery.com/jquery-2.1.1.js"></script>
<script src="http://code.jquery.com/ui/1.11.0/jquery-ui.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.11.0/themes/ui-lightness/jquery-ui.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<div id="postcard">
    <div class="textdiv">
        <textarea id="ta" rows=4></textarea>
    </div>
</div>

CSS

#postcard {
    width: 600px;
    height: 600px;
    border: 1px #000000 solid;
}

JavaScript

$(document).ready(function () {
        $(".textdiv").draggable({containment: "parent"});
        $("#ta").resizable({handles: "all"});
	});