The following warnings occurred: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Warning [2] Undefined array key "avatartype" - Line: 783 - File: global.php PHP 8.1.31 (Linux)
|
Modifying jquery validator script to submit to form tools - Printable Version +- Form Tools (https://forums.formtools.org) +-- Forum: Form Tools (https://forums.formtools.org/forumdisplay.php?fid=1) +--- Forum: API (https://forums.formtools.org/forumdisplay.php?fid=17) +--- Thread: Modifying jquery validator script to submit to form tools (/showthread.php?tid=2771) |
Modifying jquery validator script to submit to form tools - videosurfer - Dec 17th, 2013 Hi From http://jqueryvalidation.org/, I am using the following jquery script that submits the form when all fields have validated: <script> $(".selector").validate({ submitHandler: function(form) { // do other things for a valid form form.submit(); } }); How would I modify this and the Form Tools API code to submit to Form tools when jquery validation is passed. |