JSFiddle - React, Tailwind, and code Playground
by Karan1412
HTML
<p>Try copy, cut and paste on textbox.</p>
<input type="text" id="start" />
JavaScript
$(document).ready(function () {
$("#start").bind("cut copy paste", function (e) {
alert("The operation '" + e.type + "' is not allowed !");
return false;
});
});