JSFiddle - React, Tailwind, and code Playground
by ninty9notout
HTML
<form method="post" id="some-form">
<input type="hidden" name="sku" value="abc123">
<input type="hidden" name="qty" value="1">
<p><label>Quantity: <input type="number" name="qty" value="1" required="required"></label></p>
<p>Size:
<label><input type="radio" name="size" value="Small" checked="checked"> Small</label>
<label><input type="radio" name="size" value="Medium"> Medium</label>
<label><input type="radio" name="size" value="Large"> Large</label>
</p>
<p class="buttons"><input type="submit" id="some-button" value="Add to cart »" onClick="javascript: doStuff();"></p>
</form>
JavaScript
function doStuff() {
console.log("hi");
return false;
};