jQuery.parseXML uses native parsing function of the browser to create a valid XML document.
After that this document can then be passed to jQuery for creating a typical jQuery object which can be traversed and manipulated then.
This is a easy technique of parsing JSON with jQuery and thought i’d pick this up and show you how to parse XML. It is available from jQuery 1.5 version.
Here is the XML code for the purpose of the demo.
var xml = "<note><heading>Sample Heading</heading><body>Hi! Is this the body you are looking for?</body></note>"; xmlDoc = $.parseXML( xml ); $xml = $( xmlDoc ); $body = $xml.find( "body" ); console.log($body.text());
You will get the result: Hi! Is this the body you are looking for?
Get more details from jQuery reference.
Content marketing has a hidden tax. It's not the writing itself, it's everything that happens…
Most marketing teams aren't failing because they lack data. They're failing because they can't act…
Email marketing continues to be one of the most effective ways for businesses to communicate,…
Xerox first introduced it around the mid-1970s. The need came up because the management activities…
Investing in the forex market may look to be a dangerous game. With some worthwhile…
The coronavirus outbreak has drastically changed the way we live our lives. Yes, that's absolutely…