JSFiddle - React, Tailwind, and code Playground

by toshimaru

HTML

<form>
    <input type="text" name="txt"/><br />
    <input type="password" name="pwd"/><br />
    <input type="hidden" value="hoge" name="hdn"/>
    <input type="submit" />
</form>

JavaScript

$('form').on('submit', function(e) {
    e.preventDefault();
    alert($(this).serialize());
});