JSFiddle - React, Tailwind, and code Playground
by ziir
HTML
<input type="text" value="something"/>
JavaScript
$(document).bind('paste', function(e) {
var target = e.target,
text = "";
console.log(target);
setTimeout( function() {
text = $(target).val();
console.log(text + " Blabla ");
}, 10);
});