JSFiddle - React, Tailwind, and code Playground

by tinyhustlee

HTML

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

JavaScript

$('form input').on('keypress', function(e) {console.log(23232);
    return e.which !== 13;
});