I am invoking a web service through $.ajax().
onsuccess I am getting an xml document, now the problem is I need to see the contents of the retrieved xmlDocument..
Is there anyway to do that.. ??
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.
Put it to the textarea field as-is
or display with html-encoding:
Simple demo: http://jsfiddle.net/wKhnF/1/
Note
dataType: "text", it is required to process the response contents as a text rather then XML object.