refresh form on submit code example
Example 1: html prevent submit from reloading page
<form onSubmit="return false; // Returning false stops the page from reloading">
<button type="submit"></button>
</form>
Example 2: submit() refreshes the page
<form onsubmit="return false;">Form stuff in here</form>
Example 3: make submit button not refresh page
If possible, change it to a normal button