JSFiddle - React, Tailwind, and code Playground
HTML
<div id="abc">
<input type="text" value="abc" />
</div>
edit the box and click outside !
JavaScript
jQuery("#abc").on("change", "input", function(){
alert("It works !");
//your javascript/jQuery goes here
}
);