JSFiddle - React, Tailwind, and code Playground
HTML
<form action="#">
<fieldset>
<input type="text" />
<input type="text" />
<input type="text" />
<input type="submit" value="submit" />
</fieldset>
</form>
<form action="#">
<fieldset>
<input type="text" />
<input type="text" />
<input type="text" />
<input type="submit" value="submit" />
</fieldset>
</form>
JavaScript
$(function() {
$('form').live('submit', function() {
$('input', this).remove();
return false;
})
})