<input type="submit" name="submit" value="Submit" onclick="check_form();"></div>
If all fields are corrects function check_form() return true, I want submit form, only hwen all fields are correct, how to do it. On this moments when I close JavaScript alerts form auto submit.
return false;to prevent the default behavior (which is to submit the page), otherwisereturn true;and let it submit. – jbabey Feb 19 at 20:15