JSFiddle - React, Tailwind, and code Playground
HTML
<input/>
JavaScript
$(function(){
$('input').bind('paste',function(e){
var $this = $(this);
setTimeout(function(){
alert($this.val());
},0); //just break the callstack to let the event finish
});
});