validationEngine form action
Hi
I am trying to use the validationEngine for a website submitting a form to an http service on a different server. All the examples use this code to submit forms:
- $("#formID").validationEngine({
- ajaxSubmit: true,
- ajaxSubmitFile: "submit.php",
- ajaxSubmitExtraData:"name=anything",
- ajaxSubmitMessage: "Thank you, we received your inscription from the second form!",
- success : false,
- failure : function() {}
- })
- ...
- <form id="formID" class="formular" method="post" action="">
Before using the validationEngine I would put the url I want to post the form to into the action attribute of the form, i.e. action="http://xxx.xxx.xxx.xxx/processor"
How can I use the jQuery code to perform the same action from within the script? Has anybody an example for me how to do that?
Regards,
Lars