Dec 17th, 2013, 6:21 AM
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.
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.