JSFiddle - React, Tailwind, and code Playground
HTML
<input type="text" id="pasteable"/>
JavaScript
$("#pasteable").on('paste',function(event){
setTimeout(function(){
alert($("#pasteable").val());
},100);
});
<input type="text" id="pasteable"/>
$("#pasteable").on('paste',function(event){
setTimeout(function(){
alert($("#pasteable").val());
},100);
});