SyntaxFix
Write A Post
Hire A Developer
Questions
Buttons like <button>Click to do something</button> are submit buttons.
<button>Click to do something</button>
Set type="button" to change that. type="submit" is the default (as specified by the HTML recommendation).
type="button"
type="submit"