JSFiddle - React, Tailwind, and code Playground

by timdown

HTML

<input id="textBox" value="some text">

JavaScript

var textBox = document.getElementById("textBox");

function textBoxEventHandler(e) {
    e = e || window.event;
    alert(e.type);
}

textBox.onselect = textBoxEventHandler;
textBox.onpaste = textBoxEventHandler;
textBox.oncopy = textBoxEventHandler;