JSFiddle - React, Tailwind, and code Playground

by klaascuvelier

HTML

<form action="" method="post">
    <input type="submit" value="test" />
</form>

JavaScript

$('form').submit(function (e) {
    alert('stop bitching');
    e.preventDefault();
});