JSFiddle - React, Tailwind, and code Playground

HTML

<form>
    <input>
    <textarea></textarea>    
    <select>
        <option>Test</option>
    </select>
    <input type="submit">
</form>

JavaScript

$("form input").on("keypress", function(e) {
    return e.keyCode != 13;
});