how to stop html form from refreshing site:stackoverflow.com code example
Example 1: jquery submit refresh page stop
$("#prospects_form").submit(function(e) {
e.preventDefault();
});
Example 2: submit() refreshes the page
<form onsubmit="return false;">Form stuff in here</form>