JSFiddle - React, Tailwind, and code Playground
by Daniel Lamb
HTML
<input id="example">
pasted: <span>false</span>
JavaScript
$('#example').on('paste', function() {
$('span').text('true');
});
by Daniel Lamb
<input id="example">
pasted: <span>false</span>
$('#example').on('paste', function() {
$('span').text('true');
});