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>

<p>Events: <span id="eventCounter">0</span></p>
<div id="resizable"></div>

CSS

body { padding: 20px; }
p { line-height: 1.5; }

#resizable {
    height: 100px;
    width: 100px;
    border: 1px solid black;
}

JavaScript

var events = 0;
$('#resizable').resizable({
    resize: function() {
        events++;
        $('#eventCounter').html(events);        
    }
});