submit form with pure javascript, with preventdefault code example
Example 1: javascript prevent form submit
<form name="foo" onsubmit="return false">
Example 2: javascript do not submit form
alert("hello world");
alert("it is a test");
<form name="foo" onsubmit="return false">
alert("hello world");
alert("it is a test");