JSFiddle - React, Tailwind, and code Playground
HTML
<form id="fuckform" action="">
<input type="text">
<input type="submit">
</form>
<script>
document.getElementById("fuckform").onsubmit = function(){
return false;
};
</script>
CoffeeScript
window.addEvents
load: ->
document.getElementById("fuckform").onsubmit = null