JSFiddle - React, Tailwind, and code Playground
HTML
<form action="" method="post">
<input type="submit" value="test" />
</form>
JavaScript
$('form').submit(function (e) {
alert('stop bitching');
e.preventDefault();
});
<form action="" method="post">
<input type="submit" value="test" />
</form>
$('form').submit(function (e) {
alert('stop bitching');
e.preventDefault();
});