Chapter 15. XML in JavaScript

At one point in time, XML was the standard for structured data storage and transmission over the Internet. The evolution of XML closely mirrored the evolution of the web technologies as the DOM was developed for use not just in web browsers but also in desktop and server applications for dealing with XML data structures. Many developers started writing their own XML parsers in JavaScript to deal with the lack of built-in solutions. Since that time, all browsers have introduced native support for XML, the XML DOM, and many related technologies.

XML DOM Support in Browsers

Since browser vendors began implementing XML solutions before formal standards were created, each offers not only different levels of support, but also different implementations. DOM Level 2 was the first specification to introduce the concept of dynamic XML DOM creation. This capability was expanded upon in DOM Level 3 to include parsing and serialization. By the time DOM Level 3 was finalized, however, most browsers had implemented their own solutions.

DOM Level 2 Core

As mentioned in Chapter 11, DOM Level 2 introduced the createDocument() method of document.implementation. Firefox, Opera, Chrome, and Safari support this method. As of version 8, Internet Explorer (IE) still does not support DOM Level 2. You may recall that it's possible to create a blank XML document using the following syntax:

var xmldom = document.implementation.createDocument(namespaceUri, root, doctype);

When dealing ...

Get Professional, JavaScript® for Web Developers, Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.