Index
Button Type Gotcha 🐞


In chrome, using ajax (JavaScript) this button html code does not work.
<form>
	<!-- ... -->
	<button id="solve">Solve</button>
</form>
Setting the type to "button" fixes the issue
<form>
	<!-- ... -->
	<button type="button" id="solve">Solve</button>
</form>