JavaScript and XML : Page 3 | JavaScript: The Definitive Guide, Fifth Edition
[previous] [next]
JavaScript and XML
21.1.4 XML Documents from Data Islands
Microsoft has extended HTML with an <xml>
tag that creates an XML data island within the surrounding "sea" of HTML markup. When IE encounters this <xml>
tag, it treats its contents as a separate XML document, which you can retrieve using document.getElementById()
or other HTML DOM methods. If the <xml>
tag has a src
attribute, the XML document is loaded from the URL specified by that attribute instead of being parsed from the content of the <xml>
tag.
If a web application requires XML data, and the data is known when the application is first loaded, there is an advantage to including that data directly within the HTML page: the data is already available, and the web application does not have to establish another network connection to download the data. XML data islands can be a useful way to accomplish this. It is possible to approximate IE data islands in other browsers using code like that shown in Example 21-5.
Example 21-5. Getting an XML document from a data island
This code does not perfectly simulate XML data islands in non-IE browsers. The HTML standard requires browsers to parse (but ignore) tags such as <xml>
that they don't know about. This means that browsers don't discard XML data within an <xml>
tag. It also means that any text within the data island is displayed by default. An easy way to prevent this is with the following CSS stylesheet:
Another incompatibility is that non-IE browsers treat the content of XML data islands as HTML rather than XML content. If you use the code in Example 21-5 in Firefox, for example, and then serialize the resulting document (you'll see how to do this later in the chapter), you'll find that the tag names are all converted to uppercase because Firefox thinks they are HTML tags. In some cases, this may be problematic; in many other cases, it is not. Finally, notice that XML namespaces
break if the browser treats the XML tags as HTML tags. This means that inline XML data islands are not suitable for things like XSL stylesheets (XSL is covered in more detail later in this chapter) because those stylesheets always use namespaces.
If you want the network benefits of including XML data directly in an HTML page, but don't want the browser incompatibilities that come with using XML data islands and the <xml>
tag, consider encoding your XML document text as a JavaScript string and then parsing the document using code like that shown in Example 21-4.
[previous] [next]
URL: