How To Pause Form Submit, For 1 Last Validation, At The Very End And After That Release/trigger/continue The Submission?
I have a page1.php and i have a fly.php. page1.php is a simple (regular) form page, where people put info, when user submit the form. via ajax it loads the captcha template and a
Solution 1:
The simplest way would be to make the "submit" button not actually a <input type='submit'>
button, but rather just a standard button
. If validation passes, you can manually submit the forum using $('form').submit()
or something similar.
Post a Comment for "How To Pause Form Submit, For 1 Last Validation, At The Very End And After That Release/trigger/continue The Submission?"