on submit go to function php javascript code example
Example 1: javascript submit form
document.getElementById("myForm").submit();
Example 2: how to run js before submit html
<form onsubmit="return do_something()">
function do_something(){
// Do your stuff here
return true; // submit the form
return false; // don't submit the form
}