Displaying 1 result from an estimated 1 matches for "ajaxsubmitform".
2006 May 05
1
Sending a <form> as a SOAP request
Hi,
I''m currently using the prototype.js script with the below code.
  function ajaxSubmitForm(form, url, id) {
    var params = Form.serialize($(form));
    new Ajax.Updater(id, url, {asynchronous:true, parameters:params});
  }
my wish is that I want to use it as.
  function ajaxSubmitFormAsSoap(form, url, id) {
    ...
  }
the idea is the same, the script must build a SOAP request based...