JSFiddle - React, Tailwind, and code Playground
HTML
<input id="helpQ" type="text">
JavaScript
$(function() {
$('input#helpQ').change(function(e) {
alert("helpQ changed");
});
});
<input id="helpQ" type="text">
$(function() {
$('input#helpQ').change(function(e) {
alert("helpQ changed");
});
});