JSFiddle - React, Tailwind, and code Playground

by Bart Kalisz

HTML

<input type="text" id="input" value="Kuba jes fajny" />
<button id="button">
  Select
</button>

JavaScript

const input = document.getElementById("input");

document.addEventListener("paste", function(event) {
	console.log(event);
});