JSFiddle - React, Tailwind, and code Playground

by Valder Black

HTML

<input type="text" placeholder="Paste your text">
<br><br>
<div id="txt"></div>

CSS

body {margin: 50px auto; text-align: center}

JavaScript

var a;
$('input').on('paste', function() {
  setTimeout(function() {
    a = $('input').val();
    $('#txt').text(a);
  }, 10)
});
$('input').on('keydown', function() {
  setTimeout(function() {
    $('input').val("");
  }, 20)
});

alert(a);