JSFiddle - React, Tailwind, and code Playground
by sulfureous
HTML
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<div class="well">
<form action="#" method="get">
<input type="email" class="form-control" required>
<input type="submit" value="Submit">
</form>
<br>
<button>Unbind</button>
</div>
JavaScript
$('input[type=submit]').bind('click', function(e){
$('form').submit();
e.preventDefault();
});
$('button').click(function(){
$('input[type=submit]').unbind('click');
});