In case anyone else runs into this, I had to add the type and contentType properties before this would work. EC
$.ajax({ url: "page.php" , type: "POST" , contentType: "text/xml" , processData: false , data: xmlDocument , success: handleResponse }); On Sep 2, 4:42 am, JUN <[EMAIL PROTECTED]> wrote: > in the jQuery documentation: > > Sends an xml document as data to the server. By setting the > processData option to false, the automatic conversion of data to > strings is prevented. > > var xmlDocument = [create xml document]; > $.ajax({ > url: "page.php", > processData: false, > data: xmlDocument, > success: handleResponse > }); > > but, i never use this code works... > > anyone who can give me the works code?