validationEngine form action

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:

  1. $("#formID").validationEngine({
  2.       ajaxSubmit: true,
  3.       ajaxSubmitFile: "submit.php",
  4.       ajaxSubmitExtraData:"name=anything",
  5.       ajaxSubmitMessage: "Thank you, we received your inscription from the second form!",
  6.       success :  false,
  7.       failure : function() {}
  8.   })
  9. ...
  10. <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