JSFiddle - React, Tailwind, and code Playground
by jazahn
HTML
<form onsubmit='return test();'>
<input type='submit' />
</form>
JavaScript
function test(){
return false;
}
by jazahn
<form onsubmit='return test();'>
<input type='submit' />
</form>
function test(){
return false;
}