Click here to Skip to main content
15,887,596 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello to all,

i am sending some data using post method to a client. in repsonse client server sends me a long xml data. I want to convert this xml data in such a way that all tags are removed and just simple text is left.

Please help me to do this.

M. Junaid
Posted

 
Share this answer
 
Hi,

you can try this for readng only text of xml in client side

JavaScript
$.ajax({
        type: "GET",
	url: "sites.xml",
	dataType: "xml",
	success: function(xml) {
            var data= $(xml).text();

	}
});


I hope this is your correct solution

All the Best
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900