JSFiddle - React, Tailwind, and code Playground
by Taleeb Anwar
HTML
<script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<input type='text' />
JavaScript
$('input').keyup(function(){
alert('change');
});
by Taleeb Anwar
<script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<input type='text' />
$('input').keyup(function(){
alert('change');
});