JSFiddle - React, Tailwind, and code Playground
HTML
<input type="text" required="" class="form-control" name="email" placeholder="Adresse email" id="email">
JavaScript
$("#email").change(function() {
alert("here");
});
<input type="text" required="" class="form-control" name="email" placeholder="Adresse email" id="email">
$("#email").change(function() {
alert("here");
});