Blog Post RSS ?

Blogs » JavaScript & CSS » Processing XML with JavaScript
 

Processing XML with JavaScript

by Simon Willison

I came across a situation at work today where I needed to take an XML string from a textarea and perform DOM manipulations on it using JavaScript. After some digging around, I remembered an open source library called Sarissa I had checked out a few days ago. Sarissa is a remarkably useful piece of code: it offers a unified interface in both Internet Explorer and Mozilla for handling HTTP requests, processing XML documents and fragments and performing XSLT transformations. The IE functions are mostly provided using ActiveX objects, while the Mozilla functions take advantage of Mozilla’s XML Extras package.

Using Sarissa, converting a string containing XML in to a regular DOM node can be done using the following:

var dom = Sarissa.getDomDocument(); var xml = 'This is XML!'; dom.loadXML(xml);

‘dom’ can then be treated as a DOM node, and manipulated using the regular DOM API functions (appendChild, childNodes and so on). To convert the node back to XML, simply access it’s ‘xml’ property:

var xml_again = dom.xml;

Sarissa has one disadvantage: the library itself is a hefty 24 KB. As the application I’m working on only needs to work with Mozilla, I decided to dig in to the Sarissa source code to see how the above could be achieved without the compatibility layer. Here’s the equivalent Mozilla specific code, making direct calls to additional classes provided by Mozilla’s XML extras:

var xml = 'This is XML!'; var dom = (new DOMParser()).parseFromString(xml, "text/xml");

And to convert back to a string:

var xml_again = (new XMLSerializer()).serializeToString(dom);

Unfortunately, as far as I can tell the only official documentation for the XML extras package takes the form of a test suite.

Share and Enjoy:
  • Digg
  • del.icio.us
  • Facebook
  • Google Bookmarks
  • Ping.fm
  • Twitthis

Related posts:

  1. Google Closure: How not to write JavaScript What if Google released a JavaScript library that sucked, and...
  2. Truthy and Falsy: When All is Not Equal in JavaScript Anything in JavaScript can be considered to be either truthy...
  3. Server-side JavaScript Will Be as Common as PHP Despite the fact that JavaScript has been typecast as the...
  4. Cross-browser JSON Serialization in JavaScript JSON serialization can be incredibly useful, but few browsers support...
  5. How to Write a Cookie-less Session Library for JavaScript Craig provides the code for a stand-alone JavaScript session variable...

This post has 9 responses so far

Sponsored Links

SitePoint Marketplace

Buy and sell Websites, templates, domain names, hosting, graphics and more.

Follow SitePoint on...