JSFiddle - React, Tailwind, and code Playground

by jasper

HTML

<textarea class="inputTextArea"></textarea>

JavaScript

$(".inputTextArea").bind('paste', function(e) {
        var el = $(this);
        setTimeout(function() {
            var text = $(el).val();
        alert(text);
        }, 100);
});