JSFiddle - React, Tailwind, and code Playground

HTML

<input id="helpQ" type="text">

JavaScript

$(function() {
    $('input#helpQ').change(function(e) {
	   alert("helpQ changed");
    });
});