JSFiddle - React, Tailwind, and code Playground
by nkovacs
HTML
<input type="text" />
JavaScript
$(document).on('change', function() {console.log('change')});
$(document).on('keydown', 'input', function(e) {
if (e.keyCode === 13) {
e.stopPropagation();
e.preventDefault();
}
});