I am writing an app that depends heavily on XML data sources. For purposes outside of this scope, the XML is loaded with jQuery.ajax(). Is there a way to insert the resulting XML Doc Object into a Sarissa Object?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Test this:
var oDomDoc = Sarissa.getDomDocument();
oDomDoc = (new DOMParser()).parseFromString(xDoc, “text/xml”);