Creating XML document in jQuery environment
- by satts
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.