JSFiddle - React, Tailwind, and code Playground
HTML
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.js"></script>
<input type="text" required="" class="form-control" name="email" placeholder="Adresse email" id="email">
JavaScript
$("#email").change(function() {
alert("here");
});
$("#email").keyup(function() {
alert("There");
});