JSFiddle - React, Tailwind, and code Playground
HTML
<input type="text" id="textbox" />
JavaScript
$("#textbox").change(function() {alert("Change detected!");});
$("#textbox").bind('paste',function() {alert("paste detected!");});
<input type="text" id="textbox" />
$("#textbox").change(function() {alert("Change detected!");});
$("#textbox").bind('paste',function() {alert("paste detected!");});