input type submit refresh page code example
Example 1: how to make form not reload page
<form onsubmit="return false">
</form>
Example 2: submit() refreshes the page
<form onsubmit="return false;">Form stuff in here</form>
<form onsubmit="return false">
</form>
<form onsubmit="return false;">Form stuff in here</form>