JSFiddle - React, Tailwind, and code Playground

by Oski Krawczyk

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