Creating XML document in jQuery environment

Posted by satts on Stack Overflow See other posts from Stack Overflow or by satts
Published on 2009-04-21T06:00:49Z Indexed on 2010/04/09 20:23 UTC
Read the original article Hit count: 358

Filed under:
|
|

Have referred to JQuery docs where they mention this piece of code.

var xmlDocument = [create xml document];
 $.ajax({
 url: "page.php",
 processData: false,
 data: xmlDocument,
 success: handleResponse
 });

but i am trying to make the same request in Adobe AIR environment its giving a parse error.

Is there any specific way of creating an xml Document using jQuery.

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about Xml