2 form actions - submit a form twice to different scripts

2 form actions - submit a form twice to different scripts

Hi,

for some reason I need to transmit a form to 2 different scripts at the same time.
Any idea how i can do that?

Any help would be appreciated.

Greetings
Remcha
  1. jQuery("#form1").validate({
  2. debug: true,
  3. submitHandler: function() {
  4. var dataString = jQuery("#order_form form").serialize();

  5. jQuery.ajax({
  6.          type: "POST",
  7.               url: "checkout.php",
  8.               data: dataString,
  9.          //dataType: text,
  10.               success: function(msg) {
  11.  
  12.   jQuery('#order').animate({ left: '400px'}, 4000, 'linear').fadeOut(2500);
  13. jQuery('#form1').animate({ left: '400px'}, 0, 'linear').fadeOut(0);  
  14.   //jQuery('#left').css('left', '400px');
  15.                     jQuery('#order_form').html("<div style='margin-top:117px; text-align:center;' id='message'></div>");
  16.                     jQuery('#message').html("<p class='text'>Thank you</p>")
  17.                     .append("<p class='text' style='margin-bottom:15px;'></p>")
  18.                     .fadeIn(500, function() {
  19.                       jQuery('#message').append("<img id='checkmark' src='form/ok.png'  >");
  20.                     });
  21.               },
  22.              });
  23.         return false;
  24. }
  25. });