JSFiddle - React, Tailwind, and code Playground

by Karan1412

HTML

<p>Try cut, copy and paste operations in the textbox.</p>
<input type="text" id="start" />

JavaScript

$("#start").live("cut copy paste", function (e) {
    e.preventDefault();
    alert("The operation '" + e.type + "' is not allowed !");
});