JSFiddle - React, Tailwind, and code Playground

by dwaddell

HTML

<div id="HelloWorld">
    <textarea></textarea>
</div>

CSS

.ui-resizable-se { bottom:17px }

JavaScript

$(document).ready(function() {
    $('div#HelloWorld').find('textarea').resizable({
        handles: "se",
        create: function(a, b) {
            console.log(a);
            console.log(b);
        }
    });;
});